Fix tests by removing type hints

This commit is contained in:
Dominik Pataky 2023-08-19 19:22:43 +02:00
parent 942df30bf6
commit 098acc1ae9

View file

@ -971,11 +971,11 @@ class IPFIXExportPacket:
return self._contains_new_templates return self._contains_new_templates
@property @property
def flows(self) -> list[IPFIXTemplateRecord | IPFIXOptionsTemplateRecord | IPFIXDataRecord]: def flows(self):
return self._flows return self._flows
@property @property
def templates(self) -> dict[int, list]: def templates(self):
return self._templates return self._templates
def __repr__(self): def __repr__(self):