7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-07 08:30:48 +00:00

Merge remote-tracking branch 'origin/master' into nightly

This commit is contained in:
Overhang.IO 2022-02-21 10:32:53 +00:00
commit 15bc7e5cc5
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ kubernetes==18.20.0
# via -r requirements/base.in
markupsafe==2.0.1
# via jinja2
mypy==0.910
mypy==0.931
# via -r requirements/base.in
mypy-extensions==0.4.3
# via mypy
@ -59,7 +59,7 @@ six==1.16.0
# google-auth
# kubernetes
# python-dateutil
toml==0.10.2
tomli==2.0.1
# via mypy
typing-extensions==3.10.0.2
# via mypy

View File

@ -64,7 +64,7 @@ class BasePlugin:
command = getattr(obj, "command", None)
if command is not None:
assert isinstance(command, click.Command)
self.command: click.Command = command
self.command: Optional[click.Command] = command
@staticmethod
def load_config(obj: Any, plugin_name: str) -> Dict[str, Config]: