Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 27, 2024
1 parent f0c600b commit f0c918a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mesa/experimental/signals/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"All",
"Computable",
"Computed",
"Signal"
"Signal",
]
2 changes: 1 addition & 1 deletion mesa/experimental/signals/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ def step(self): # noqa D103
model = BoltzmannWealth()
model.run_model(1000)
end = time.perf_counter()
data.append((end - start))
data.append(end - start)

Check warning on line 111 in mesa/experimental/signals/test.py

View check run for this annotation

Codecov / codecov/patch

mesa/experimental/signals/test.py#L107-L111

Added lines #L107 - L111 were not covered by tests

print(f"mean runtime: {mean(data)}")

Check warning on line 113 in mesa/experimental/signals/test.py

View check run for this annotation

Codecov / codecov/patch

mesa/experimental/signals/test.py#L113

Added line #L113 was not covered by tests

0 comments on commit f0c918a

Please sign in to comment.