mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Attempt to fix mypy ?
This commit is contained in:
parent
259c596e12
commit
84d1a6bcca
1 changed files with 4 additions and 4 deletions
|
@ -63,10 +63,10 @@ def system_virt():
|
|||
return system_virt.cache
|
||||
|
||||
|
||||
debian_version.cache = None
|
||||
debian_version_id.cache = None
|
||||
system_arch.cache = None
|
||||
system_virt.cache = None
|
||||
debian_version.cache = None # type: ignore[attr-defined]
|
||||
debian_version_id.cache = None # type: ignore[attr-defined]
|
||||
system_arch.cache = None # type: ignore[attr-defined]
|
||||
system_virt.cache = None # type: ignore[attr-defined]
|
||||
|
||||
|
||||
def free_space_in_directory(dirpath):
|
||||
|
|
Loading…
Add table
Reference in a new issue