Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cosmo/l2vpnhelpertypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def _(self, o: InterfaceType | VLANType):


# generic supported termination types. it's this shape so that it can be directly used by isinstance()
# (same shape as _ClassInfo)
T = tuple[type[AbstractNetboxType], type[AbstractNetboxType]] | type[AbstractNetboxType]
# (same shape as _ClassInfo). can be class/subclasses or N-length homogeneous tuple of class/subclasses
T = tuple[type[AbstractNetboxType], ...] | type[AbstractNetboxType]


# FIXME simplify this!
Expand Down