Skip to content

Commit

Permalink
Fix tests by removing type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
bitkeks committed Aug 19, 2023
1 parent 942df30 commit 098acc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netflow/ipfix.py
Original file line number Diff line number Diff line change
Expand Up @@ -971,11 +971,11 @@ def contains_new_templates(self) -> bool:
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):
Expand Down

0 comments on commit 098acc1

Please sign in to comment.