fix: remove orphaned docstring fragment causing syntax error

- Remove misplaced 'Returns:' section and return statement outside method
- Fix unterminated triple-quoted string literal error
- Method scan_and_process_nfo doesn't return a value, so removed incorrect docstring
This commit is contained in:
2026-01-23 14:42:55 +01:00
parent 4c606faa0e
commit ae162d9a6d

View File

@@ -273,11 +273,6 @@ class SeriesManagerService:
if i + batch_size < len(tasks): if i + batch_size < len(tasks):
await asyncio.sleep(2) await asyncio.sleep(2)
Returns:
SerieList instance
"""
return self.serie_list
async def close(self): async def close(self):
"""Clean up resources.""" """Clean up resources."""
if self.nfo_service: if self.nfo_service: