Skip to content

Commit

Permalink
Merge pull request #110 from schism-dev/bugfix/bctides
Browse files Browse the repository at this point in the history
fixed a bug in calculating nbfr
  • Loading branch information
cuill committed Nov 6, 2023
2 parents 06703b9 + 49c519a commit 7565c6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.7', '3.8', '3.9', '3.x' ]
python-version: [ '3.8', '3.9', '3.x' ]
steps:
- name: checkout repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion pyschism/forcing/bctides/bctides.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,5 +274,5 @@ def ntip(self):

@property
def nbfr(self):
return len(self.tides.get_active_potential_constituents())
return len(self.tides.get_active_forcing_constituents())

0 comments on commit 7565c6f

Please sign in to comment.