Skip to content

Commit

Permalink
format, update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Jan 31, 2024
1 parent fe67eb2 commit 0696d54
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,4 @@ app
# in case developer installs modflow executables in the project root
bin

**.DS_Store
1 change: 0 additions & 1 deletion modflow_devtools/ostags.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
systems differently. This module contains conversion utilities.
"""


import sys
from enum import Enum
from platform import system
Expand Down
6 changes: 3 additions & 3 deletions scripts/update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def update_version(
else:
update_version(
timestamp=datetime.now(),
version=Version(args.version)
if args.version
else _current_version,
version=(
Version(args.version) if args.version else _current_version
),
)

0 comments on commit 0696d54

Please sign in to comment.