From 098acc1ae910739706ac5b6a4fb074a27b67304b Mon Sep 17 00:00:00 2001 From: Dominik Pataky Date: Sat, 19 Aug 2023 19:22:43 +0200 Subject: [PATCH] Fix tests by removing type hints --- netflow/ipfix.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netflow/ipfix.py b/netflow/ipfix.py index de462ed..88c0334 100644 --- a/netflow/ipfix.py +++ b/netflow/ipfix.py @@ -971,11 +971,11 @@ class IPFIXExportPacket: return self._contains_new_templates @property - def flows(self) -> list[IPFIXTemplateRecord | IPFIXOptionsTemplateRecord | IPFIXDataRecord]: + def flows(self): return self._flows @property - def templates(self) -> dict[int, list]: + def templates(self): return self._templates def __repr__(self):