Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit 45cb971

Browse files
committed
Fix pep8 issue.
1 parent 8cd5bde commit 45cb971

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pydocstyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def _parse_from_import_source(self):
520520
is_future_import = self.current.value == '__future__'
521521
self.stream.move()
522522
while (self.current.kind in (tk.DOT, tk.NAME, tk.OP) and
523-
self.current.value != 'import'):
523+
self.current.value != 'import'):
524524
self.stream.move()
525525
self.check_current(value='import')
526526
assert self.current.value == 'import', self.current.value

0 commit comments

Comments
 (0)