Skip to content

Commit

Permalink
Fix wrong type of method
Browse files Browse the repository at this point in the history
  • Loading branch information
chraibi committed Oct 2, 2024
1 parent c7edf29 commit 3889dbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/proximity.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from enum import Enum

parent_dir = Path(__file__).resolve().parents[2]
parent_dir_str = str(parent_dir)
print("Parent dir", parent_dir)
if parent_dir not in sys.path:
print(parent_dir)
Expand Down Expand Up @@ -53,7 +54,7 @@ class InitData:
files: Dict[str, List[str]]
result_csv: Path
fps: int
method: str
method: Method



Expand Down

0 comments on commit 3889dbd

Please sign in to comment.