Skip to content

Commit

Permalink
Black formatted files
Browse files Browse the repository at this point in the history
  • Loading branch information
rickecon committed Apr 12, 2024
1 parent d487b9b commit 8c96e6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Limits `docs_check.yml` GitHub Action to pull request commits, no more on push at merge.
- Adds Codecov secret token and if statement to `build_and_test.yml`.
- Adds a list of file change event triggers to `build_and_test.yml` so that those tests only run when one of those files is changed.
- Updates the codecov GH Action to version 4 and adds a secret token.
- Adds a list of file change event triggers to `deploy_docs.yml` and `docs_check.yml`, and limits `docs_check.yml` to only run on pull requests.


## [0.11.4] - 2024-04-03 22:00:00
Expand Down
2 changes: 1 addition & 1 deletion ogcore/SS.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def inner_loop(outer_loop_vars, p, client):
results = results = compute(
*lazy_values,
scheduler=dask.multiprocessing.get,
num_workers=p.num_workers
num_workers=p.num_workers,
)

for j, result in enumerate(results):
Expand Down
2 changes: 1 addition & 1 deletion ogcore/TPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ def run_TPI(p, client=None):
results = results = compute(
*lazy_values,
scheduler=dask.multiprocessing.get,
num_workers=p.num_workers
num_workers=p.num_workers,
)

for j, result in enumerate(results):
Expand Down

0 comments on commit 8c96e6b

Please sign in to comment.