Skip to content

Commit

Permalink
Merge pull request #26 from zenodallavalle/dev
Browse files Browse the repository at this point in the history
bug fix
  • Loading branch information
zenodallavalle authored Jul 21, 2023
2 parents 323dcbf + e77ddb5 commit edabb3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion italy_geopop/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.1"
__version__ = "0.6.2"
4 changes: 2 additions & 2 deletions italy_geopop/pandas_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def __init__(
include_geometry: bool = False,
data_year: Optional[int] = None,
) -> None:
self.geopop = geopop.Geopop()
self.include_geometry = include_geometry
self.data_year = data_year
self.geopop = geopop.Geopop(data_year=self.data_year)
self.include_geometry = include_geometry
self._obj = pandas_obj

@classmethod
Expand Down

0 comments on commit edabb3e

Please sign in to comment.