Skip to content

Commit

Permalink
fixes: fix DataIterator
Browse files Browse the repository at this point in the history
  • Loading branch information
jlsneto committed Feb 11, 2025
1 parent 4827f18 commit 75083b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cereja/utils/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1972,7 +1972,7 @@ def summary(self):
return self.analyzer.report

@property
def freq(self) -> 'Freq':
def freq(self):
"""
Get the frequency of the data iterator.
Expand Down Expand Up @@ -2001,7 +2001,7 @@ def __init__(self, data: Union[str, Iterable[str], DataIterator], **kwargs):
self._freq: Union[Freq, None] = None

@property
def freq(self) -> 'Freq':
def freq(self):
"""
Get the frequency of the data iterator.
Expand Down

0 comments on commit 75083b6

Please sign in to comment.