Merge remote-tracking branch 'origin/dev-3.x' into dev-3.x

This commit is contained in:
Alex Root Junior 2023-07-17 02:49:34 +03:00
commit c9d5b37d5c
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
3 changed files with 6 additions and 2 deletions

View file

@ -191,7 +191,7 @@ class Command(Filter):
return command # noqa: RET504
def do_magic(self, command: CommandObject) -> Any:
if not self.magic:
if self.magic is None:
return command
result = self.magic.resolve(command)
if not result: