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:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user