Fix for code style

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2024-04-21 23:39:35 +03:00
parent aec3406e6b
commit c68d1c11f6
3 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,8 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# mypy: disable-error-code="no-redef"
try:
import tomli
except ModuleNotFoundError:

View file

@ -229,4 +229,3 @@ class Utilities(Configs):
value = self.convert_dict_keys_to_lower(value)
new_dict[key.lower()] = value
return new_dict

View file

@ -1,6 +1,8 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# mypy: disable-error-code="no-redef, annotation-unchecked"
import shutil
from slpkg.configs import Configs