Skip to content

Commit 1171b33

Browse files
committed
small touchups related to precommit additions
1 parent 79d3dd4 commit 1171b33

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repos:
2121
language_version: python3
2222
additional_dependencies: [flake8-typing-imports==1.9.0]
2323
- repo: https://github.com/asottile/reorder_python_imports
24-
rev: v2.3.0
24+
rev: v2.3.2
2525
hooks:
2626
- id: reorder-python-imports
2727
args: ['--application-directories=.:src', --py3-plus]

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ install:
1717
- pip install -q pre-commit
1818
- pre-commit install
1919
script:
20-
- pre-commit run --all-files --show-diff-on-failure
20+
- if [ $TRAVIS_PYTHON_VERSION -ge 3.6 ]; pre-commit run --all-files --show-diff-on-failure; fi
2121
- py.test

pytest_rerunfailures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def get_reruns_delay(item):
155155
if delay < 0:
156156
delay = 0
157157
warnings.warn(
158-
"Delay time between re-runs cannot be < 0. " "Using default value: 0"
158+
"Delay time between re-runs cannot be < 0. Using default value: 0"
159159
)
160160

161161
return delay

0 commit comments

Comments
 (0)