Skip to content

Commit

Permalink
fix: something smol to trigger semantic release :O
Browse files Browse the repository at this point in the history
  • Loading branch information
iwpnd committed Jan 9, 2024
1 parent 72f2ef2 commit 95762f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flashgeotext/geotext.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def increment_count(self, name: str) -> None:
if not self.has_name(name):
return

self.data[name].count = self.data[name].count + 1
self.data[name].count += 1

def to_dict(self) -> Dict[str, Dict]:
return {k: v.dict() for k, v in self.data.items()}
Expand Down

0 comments on commit 95762f2

Please sign in to comment.