mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-25 21:41:27 +00:00
documentation(services): move the storage count docstring to parent service class
This commit is contained in:
parent
f5de4974e7
commit
34854b5118
|
@ -124,6 +124,11 @@ class Service(ABC):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_storage_usage(cls) -> int:
|
def get_storage_usage(cls) -> int:
|
||||||
|
"""
|
||||||
|
Calculate the real storage usage of folders occupied by service
|
||||||
|
Calculate using pathlib.
|
||||||
|
Do not follow symlinks.
|
||||||
|
"""
|
||||||
storage_used = 0
|
storage_used = 0
|
||||||
for folder in cls.get_folders():
|
for folder in cls.get_folders():
|
||||||
storage_used += get_storage_usage(folder)
|
storage_used += get_storage_usage(folder)
|
||||||
|
|
Loading…
Reference in a new issue