-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Prowlarr feed scraping & Improve Advanced scraping capability for prowlarr, zilean, torrentio & more bugfixes & improvements #286
Changes from all commits
98a59d8
7961bf8
0c5d203
dd44133
c56c431
49ed72a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -7,7 +7,7 @@ | |||||
# import background actors | ||||||
# noqa: F401 | ||||||
from mediafusion_scrapy import task | ||||||
from scrapers import tv, imdb_data, trackers, helpers, prowlarr | ||||||
from scrapers import tv, imdb_data, trackers, helpers, prowlarr, prowlarr_feed | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove unused imports. The static analysis tool correctly points out that several imports, including the newly added Unless there are plans to use these imports in the near future, it's best to remove them to keep the codebase clean and maintainable. Apply this diff to remove the unused imports: -from scrapers import tv, imdb_data, trackers, helpers, prowlarr, prowlarr_feed
+from scrapers import prowlarr_feed If you intend to use these imports in upcoming commits, feel free to ignore this comment. Committable suggestion
Suggested change
ToolsRuff
|
||||||
from utils import validation_helper | ||||||
|
||||||
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move the
BackgroundTasks
call within the function.Performing the
BackgroundTasks
call in the argument defaults can lead to unexpected behavior.Apply this diff to fix the issue:
Committable suggestion
Tools
Ruff