Skip to content

Commit

Permalink
Merge pull request #606 from DHI/mypy_1_6
Browse files Browse the repository at this point in the history
Remove wrong type
  • Loading branch information
ecomodeller authored Oct 11, 2023
2 parents b9d2d4a + 64e6949 commit c80f383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mikeio/dataset/_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ def __set_or_insert_item(self, key, value, insert=False):
self._data_vars[key] = value
self._set_name_attr(key, value)

def insert(self, key: int, value: DataArray):
def insert(self, key, value: DataArray):
"""Insert DataArray in a specific position
Parameters
Expand Down

0 comments on commit c80f383

Please sign in to comment.