We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1463aac commit 5c2fecdCopy full SHA for 5c2fecd
src/github_client_service.py
@@ -13,8 +13,8 @@
13
14
15
class GitHubClientService:
16
- def __init__(self):
17
- self.__config = Config()
+ def __init__(self, config: Config):
+ self.__config = config
18
19
@cached_property
20
def github_key(self) -> str:
src/linear/linear.py
@@ -17,8 +17,8 @@ def response_status_check(response: requests.Response):
class LinearService:
21
- self._config = Config()
+ self._config = config
22
23
24
def team_id(self) -> UUID | None:
0 commit comments