1
0

fix: Remove unnecessary del statements from __main__.py file

This commit is contained in:
Jon Michael Aanes (aider) 2025-04-08 22:51:31 +02:00
parent 2e2a52e33e
commit 0e1779cca0

View File

@ -83,7 +83,6 @@ def load_samples(args) -> set[ActivitySample]:
shared_time_stamps_set |= set(
git_repo.iterate_samples_from_git_repository(repo_path),
)
del repo_path
# CSV Files
for csv_path in args.csv_files:
@ -91,7 +90,6 @@ def load_samples(args) -> set[ActivitySample]:
shared_time_stamps_set |= set(
csv_file.iterate_samples_from_csv_file(csv_path),
)
del csv_path
return shared_time_stamps_set