Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flopy/modflow/mfsfr2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2608,7 +2608,7 @@ def _get_item2_names(nstrm, reachinput, isfropt, structured=False):
return names


def _fmt_string(array, float_format='{}'):
def _fmt_string(array, float_format='{!s}'):
fmt_string = ''
for field in array.dtype.descr:
vtype = field[1][1].lower()
Expand All @@ -2630,7 +2630,7 @@ def _fmt_string(array, float_format='{}'):
return fmt_string


def _fmt_string_list(array, float_format='{}'):
def _fmt_string_list(array, float_format='{!s}'):
fmt_string = []
for field in array.dtype.descr:
vtype = field[1][1].lower()
Expand Down