Skip to content

Commit

Permalink
Remove definitions also
Browse files Browse the repository at this point in the history
  • Loading branch information
Audionut committed Nov 1, 2024
1 parent a9031e8 commit 44c6492
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/prep.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,6 @@ async def gather_prep(self, meta, mode):
try:
meta, match = await asyncio.wait_for(
self.update_metadata_from_tracker('PTP', ptp, meta, search_term, search_file_folder),
timeout=timeout_duration
)
if match:
found_match = True
Expand All @@ -577,7 +576,6 @@ async def gather_prep(self, meta, mode):
try:
meta, match = await asyncio.wait_for(
self.update_metadata_from_tracker('BLU', blu, meta, search_term, search_file_folder),
timeout=timeout_duration
)
if match:
found_match = True
Expand All @@ -592,7 +590,6 @@ async def gather_prep(self, meta, mode):
try:
meta, match = await asyncio.wait_for(
self.update_metadata_from_tracker('AITHER', aither, meta, search_term, search_file_folder),
timeout=timeout_duration
)
if match:
found_match = True
Expand All @@ -607,7 +604,6 @@ async def gather_prep(self, meta, mode):
try:
meta, match = await asyncio.wait_for(
self.update_metadata_from_tracker('LST', lst, meta, search_term, search_file_folder),
timeout=timeout_duration
)
if match:
found_match = True
Expand All @@ -622,7 +618,6 @@ async def gather_prep(self, meta, mode):
try:
meta, match = await asyncio.wait_for(
self.update_metadata_from_tracker('OE', oe, meta, search_term, search_file_folder),
timeout=timeout_duration
)
if match:
found_match = True
Expand All @@ -637,7 +632,6 @@ async def gather_prep(self, meta, mode):
try:
meta, match = await asyncio.wait_for(
self.update_metadata_from_tracker('TIK', tik, meta, search_term, search_file_folder),
timeout=timeout_duration
)
if match:
found_match = True
Expand All @@ -652,7 +646,6 @@ async def gather_prep(self, meta, mode):
try:
meta, match = await asyncio.wait_for(
self.update_metadata_from_tracker('HDB', hdb, meta, search_term, search_file_folder),
timeout=timeout_duration
)
if match:
found_match = True
Expand Down

0 comments on commit 44c6492

Please sign in to comment.