Skip to content

Commit

Permalink
fixx black errors and a few flake 8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mo2561057 committed Dec 22, 2022
1 parent 629cff6 commit 85a452b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ repos:
hooks:
- id: reorder-python-imports
- repo: https://github.com/psf/black
rev: 21.9b0
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/asottile/blacken-docs
rev: v1.11.0
rev: v1.12.1
hooks:
- id: blacken-docs
additional_dependencies: [black]
Expand Down
2 changes: 1 addition & 1 deletion respy/tests/test_method_of_simulated_moments.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_msm_nonzero(msm_args):
msm_params = get_moment_errors_func(*msm_args)

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

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

0 comments on commit 85a452b

Please sign in to comment.