-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #177 from NPLinker/update_ruff_rules
Update ruff rules to ignore unused imports in `__init__.py` files
- Loading branch information
Showing
3 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
import logging | ||
from .mibig_downloader import download_and_extract_mibig_metadata | ||
from .mibig_loader import MibigLoader | ||
from .mibig_loader import parse_bgc_metadata_json | ||
from .mibig_metadata import MibigMetadata | ||
|
||
|
||
logging.getLogger(__name__).addHandler(logging.NullHandler()) | ||
|
||
__all__ = [ | ||
"download_and_extract_mibig_metadata", | ||
"MibigLoader", | ||
"MibigMetadata", | ||
"parse_bgc_metadata_json", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters