Skip to content

Commit

Permalink
Fix(ZoneFile6.load): Add split statement to input read (#2330)
Browse files Browse the repository at this point in the history
* Fix(ZoneFile6.load): Add split statement to input read

* downgrade setup-micromamba to v1

Based on mamba issue discussion #3475
  • Loading branch information
jlarsen-usgs authored Oct 9, 2024
1 parent f35e122 commit 99d57e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v1
with:
environment-file: etc/environment.yml
cache-environment: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rtd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
echo $GITHUB_EVENT_NAME
- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v1
with:
environment-file: etc/environment.yml
cache-environment: true
Expand Down
2 changes: 1 addition & 1 deletion flopy/utils/zonbud.py
Original file line number Diff line number Diff line change
Expand Up @@ -2289,7 +2289,7 @@ def load(f: Union[str, os.PathLike], model):
if method == "open/close":
fobj = open(os.path.join(pkg_ws, t[1]))
while i < ncells:
t = multi_line_strip(fobj)
t = multi_line_strip(fobj).split()
if t[0] == "open/close":
if fobj != foo:
fobj.close()
Expand Down

0 comments on commit 99d57e6

Please sign in to comment.