Skip to content

Commit

Permalink
Fix typos (pandas-dev#46200)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmytroLitvinov authored Mar 3, 2022
1 parent 83dc639 commit fb95ac1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/sync_flake8_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _validate_additional_dependencies(
for dep in flake8_additional_dependencies:
if dep not in environment_additional_dependencies:
sys.stdout.write(
f"Mismatch of '{dep.name}' version between 'enviroment.yml' "
f"Mismatch of '{dep.name}' version between 'environment.yml' "
"and additional dependencies of 'flake8' in '.pre-commit-config.yaml'\n"
)
sys.exit(1)
Expand Down
2 changes: 1 addition & 1 deletion scripts/tests/test_sync_flake8_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_wrong_env_add_dep(capsys):
get_revisions(precommit_config, environment)
result, _ = capsys.readouterr()
expected = (
"Mismatch of 'flake8-bugs' version between 'enviroment.yml' "
"Mismatch of 'flake8-bugs' version between 'environment.yml' "
"and additional dependencies of 'flake8' in '.pre-commit-config.yaml'\n"
)
assert result == expected
Expand Down

0 comments on commit fb95ac1

Please sign in to comment.