Skip to content

Commit

Permalink
fixes: fix DataIterator (#228)
Browse files Browse the repository at this point in the history
* fixes: fix DataIterator
  • Loading branch information
jlsneto authored Feb 11, 2025
1 parent 20d669a commit aba82b4
Show file tree
Hide file tree
Showing 3 changed files with 232 additions and 222 deletions.
2 changes: 1 addition & 1 deletion cereja/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
from . import scraping
from . import wcag

VERSION = "2.0.6.final.0"
VERSION = "2.0.7.final.0"

__version__ = get_version_pep440_compliant(VERSION)

Expand Down
3 changes: 3 additions & 0 deletions cereja/mltools/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ def min_freq(self):
def to_dict(self):
return dict(self)

def unique(self):
return set(self.keys())


class ConnectValues(dict):
def __init__(self, name: str = None):
Expand Down
Loading

0 comments on commit aba82b4

Please sign in to comment.