Skip to content

Commit 85a452b

Browse files
committed
fixx black errors and a few flake 8 issues
1 parent 629cff6 commit 85a452b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ repos:
1919
hooks:
2020
- id: reorder-python-imports
2121
- repo: https://github.com/psf/black
22-
rev: 21.9b0
22+
rev: 22.3.0
2323
hooks:
2424
- id: black
2525
- repo: https://github.com/asottile/blacken-docs
26-
rev: v1.11.0
26+
rev: v1.12.1
2727
hooks:
2828
- id: blacken-docs
2929
additional_dependencies: [black]

respy/tests/test_method_of_simulated_moments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def test_msm_nonzero(msm_args):
8181
msm_params = get_moment_errors_func(*msm_args)
8282

8383
# 2. Lower number of periods in the simulated dataset.
84-
msm_periods = get_moment_errors_func(n_simulation_periods=4, *msm_args)
84+
msm_periods = get_moment_errors_func(*msm_args, n_simulation_periods=4)
8585

8686
# 3. Different simulation seed for the simulated dataset.
8787
options = copy.deepcopy(msm_args[1])

0 commit comments

Comments
 (0)