Skip to content

Commit 7231ff3

Browse files
committed
Fix lint
1 parent 240c42e commit 7231ff3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

setup.cfg

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ ignore =
99
.readthedocs.yml
1010
.style.yapf
1111
.travis.yml
12+
admin
13+
admin/release.sh
1214
CHANGELOG.rst
1315
CODE_OF_CONDUCT.rst
1416
CONTRIBUTING.rst
@@ -93,11 +95,13 @@ ignore_errors = True
9395
# Allow blank lines after function docstrings
9496
# - D202
9597
# Section names do not need to end in newlines
96-
# - D406
98+
# - D406
9799
# Section names do not need dashed underlines
98-
# - D407
100+
# - D407
99101
# No blank line is needed after the last section
100-
ignore = D200,D202,D203,D205,D212,D400,D406,D407,D413
102+
# Do not care about imperative mood
103+
# - D401
104+
ignore = D200,D202,D203,D205,D212,D400,D406,D407,D413,D401
101105
match=(?!.*(versioneer|test_|_version)).*\.py
102106

103107
[isort]

src/vws/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def response(self) -> Response:
9292
"""
9393
return self._response
9494

95+
9596
class TargetStatusProcessing(Exception):
9697
"""
9798
Exception raised when Vuforia returns a response with a result code

0 commit comments

Comments
 (0)