Skip to content

Commit

Permalink
Change ApplicationModule._handler type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
artemyfmv committed May 27, 2024
1 parent 4c5f0ec commit cfd7de1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lato/application_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ def __init__(self, name: str):
:param name: Name of the module
"""
self.name: str = name
self._handlers: defaultdict[str, OrderedSet[Callable]] = defaultdict(OrderedSet)
self._handlers: defaultdict[HandlerAlias, OrderedSet[Callable]] = defaultdict(
OrderedSet
)
self._submodules: OrderedSet[ApplicationModule] = OrderedSet()

@property
Expand Down

0 comments on commit cfd7de1

Please sign in to comment.