Skip to content

Commit

Permalink
fix the key of __transient_vector
Browse files Browse the repository at this point in the history
the key should be per not d
  • Loading branch information
mickey-tsai authored Jun 6, 2024
1 parent 04c0860 commit d016031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flopy/export/vtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@ def write(self, f: Union[str, os.PathLike], kper=None):
self.add_array(array, name)

if per in self.__transient_vector:
d = self.__transient_vector[d]
d = self.__transient_vector[per]
for name, vector in d.items():
self.add_vector(vector, name)

Expand Down

0 comments on commit d016031

Please sign in to comment.