Skip to content

Commit

Permalink
fix: include return type hinting
Browse files Browse the repository at this point in the history
Co-authored-by: Sophia <41456914+i0bs@users.noreply.github.com>
Signed-off-by: LordOfPolls <dev@lordofpolls.com>
  • Loading branch information
LordOfPolls and i0bs authored Jul 30, 2023
1 parent e085bdc commit dbafddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interactions/models/internal/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def listeners(self) -> List["Listener"]:
"""Get the listeners from this Extension."""
return self._listeners

def load(self, *args, **kwargs):
def load(self, *args, **kwargs) -> Callable[[], ...]:
"""Run on extension load"""
...

Expand Down

0 comments on commit dbafddb

Please sign in to comment.