Skip to content

Commit 098acc1

Browse files
committed
Fix tests by removing type hints
1 parent 942df30 commit 098acc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

netflow/ipfix.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -971,11 +971,11 @@ def contains_new_templates(self) -> bool:
971971
return self._contains_new_templates
972972

973973
@property
974-
def flows(self) -> list[IPFIXTemplateRecord | IPFIXOptionsTemplateRecord | IPFIXDataRecord]:
974+
def flows(self):
975975
return self._flows
976976

977977
@property
978-
def templates(self) -> dict[int, list]:
978+
def templates(self):
979979
return self._templates
980980

981981
def __repr__(self):

0 commit comments

Comments
 (0)