Skip to content

Commit 6a5d72e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5a39587 commit 6a5d72e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

bot/libs/utils/config.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,10 @@ def rodhaj(self) -> _T:
2424
return self._config.get("rodhaj", {})
2525

2626
@overload
27-
def get(self, key: Any) -> Optional[Union[_T, Any]]:
28-
...
27+
def get(self, key: Any) -> Optional[Union[_T, Any]]: ...
2928

3029
@overload
31-
def get(self, key: Any, default: Any) -> Union[_T, Any]:
32-
...
30+
def get(self, key: Any, default: Any) -> Union[_T, Any]: ...
3331

3432
def get(self, key: Any, default: Any = None) -> Optional[Union[_T, Any]]:
3533
"""Retrieves a config entry."""

0 commit comments

Comments
 (0)