- remove typing declaration

This commit is contained in:
Dmytro Bogovych 2023-08-22 15:25:21 +01:00
parent bd66766e77
commit c5ded800b9
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ class InfoCache:
return False
# Returns list of tuples (path_to_probe.json, path_to_audio.wav)
def get_probe_list(self) -> list[Path]:
def get_probe_list(self):
r = []
lst = os.listdir(self.dir)
for n in lst:
@ -130,4 +130,4 @@ class InfoCache:
f.write(json.dumps(report, indent=4))
return probe_id