From 46e10d27ffc096c7b0e06739c532aa2afade03f4 Mon Sep 17 00:00:00 2001 From: Jim Madge Date: Thu, 25 Apr 2024 14:21:15 +0100 Subject: [PATCH] Remove unnecessary type hints --- data_safe_haven/infrastructure/stack_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data_safe_haven/infrastructure/stack_manager.py b/data_safe_haven/infrastructure/stack_manager.py index 7502b5ff80..9b6bb78aa5 100644 --- a/data_safe_haven/infrastructure/stack_manager.py +++ b/data_safe_haven/infrastructure/stack_manager.py @@ -67,8 +67,8 @@ def __init__( program: DeclarativeSHM | DeclarativeSRE, ) -> None: self.account = PulumiAccount(context, config) - self.context: Context = context - self.cfg: Config = config + self.context = context + self.cfg = config self.pulumi_project = pulumi_project self.logger = LoggingSingleton() self._stack: automation.Stack | None = None