Skip to content

Commit

Permalink
chore: Update src/ape/plugins/__init__.py
Browse files Browse the repository at this point in the history
Co-authored-by: El De-dog-lo <3859395+fubuloubu@users.noreply.github.com>
  • Loading branch information
antazoey and fubuloubu authored Apr 16, 2024
1 parent 36acdd5 commit 11595e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def registered_plugins(self) -> Set[str]:
def _plugin_modules(self) -> Tuple[str, ...]:
plugins = [x.name.replace("-", "_") for x in distributions() if x.name.startswith("ape-")]
locals = [p for p in __modules__ if p != "ape"]
return tuple([*plugins, *locals])
return tuple(*plugins, *locals)

def _register_plugins(self):
if self.__registered:
Expand Down

0 comments on commit 11595e8

Please sign in to comment.