Skip to content

Commit

Permalink
Attempt to make black happy
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Dec 11, 2024
1 parent 411f576 commit 0f9c725
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/omero_rdf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,8 @@ def descending(self):

def load_handlers(self) -> Handlers:
annotation_handlers: Handlers = []
for ep in entry_points(group='omero_rdf.annotation_handler'):
eps = entry_points()
for ep in eps.select(group='omero_rdf.annotation_handler'):
ah_loader = ep.load()
annotation_handlers.append(ah_loader(self))
# We know there are some built in handlers
Expand Down

0 comments on commit 0f9c725

Please sign in to comment.