Skip to content

Commit

Permalink
ruff fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kabir Khan committed Feb 17, 2024
1 parent 1fd8743 commit 72550e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions recon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@

try:
# This needs to be imported in order for the entry points to be loaded
from recon import prodigy
except ImportError as e:
print("PRODIGY", e)
from recon import prodigy # noqa
except ImportError:
pass


Expand Down
6 changes: 3 additions & 3 deletions recon/prodigy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .recipes import (
recon_ner_correct_stats_v1,
recon_ner_correct_v1,
recon_ner_merge_v1,
recon_ner_correct_stats_v1, # noqa
recon_ner_correct_v1, # noqa
recon_ner_merge_v1, # noqa
)

0 comments on commit 72550e8

Please sign in to comment.