ci: minor fixes after mypy update

This commit is contained in:
Dima Gerasimov 2024-08-03 15:27:11 +01:00 committed by karlicoss
parent c9c0e19543
commit 0e6dd32afe
8 changed files with 18 additions and 17 deletions

View file

@ -195,7 +195,7 @@ def warn_my_config_import_error(err: Union[ImportError, AttributeError], help_ur
import click
if help_url is None:
help_url = MODULE_SETUP_URL
if type(err) == ImportError:
if type(err) is ImportError:
if err.name != 'my.config':
return False
# parse name that user attempted to import
@ -207,7 +207,7 @@ You may be missing the '{section_name}' section from your config.
See {help_url}\
""", fg='yellow', err=True)
return True
elif type(err) == AttributeError:
elif type(err) is AttributeError:
# test if user had a nested config block missing
# https://github.com/karlicoss/HPI/issues/223
if hasattr(err, 'obj') and hasattr(err, "name"):