Skip to content

Commit

Permalink
🚨 Disable linter warnings when loading subclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
jh0ker committed Jan 25, 2024
1 parent 0d411dc commit 6c96cd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ddj_cloud/scrapers/talsperren/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Load lxml because for some reason bs4 doesn't find it otherwise?
from lxml import etree
from lxml import etree # noqa: F401

# Ensure that federation subclasses are loaded
from . import federations
from . import federations # noqa: F401

# Ensure that exporter subclasses are loaded
from . import exporters
from . import exporters # noqa: F401

0 comments on commit 6c96cd1

Please sign in to comment.