Skip to content

Commit a348d95

Browse files
pyup-botsamuelcolvin
authored andcommitted
Scheduled monthly dependency update for November (#8)
* Update sphinx from 1.6.3 to 1.6.5 * Update flake8 from 3.4.1 to 3.5.0 * Update pytest from 3.2.2 to 3.2.3 * fix linting
1 parent 096c608 commit a348d95

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

devtools/debug.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ def _process_args(self, func_ast, code_lines, args, kwargs) -> Generator[DebugAr
189189
end_line, end_col = len(code_lines) - 1, None
190190

191191
name_lines = []
192-
for l in range(start_line, end_line + 1):
193-
start_ = start_col if l == start_line else 0
194-
end_ = end_col if l == end_line else None
192+
for l_ in range(start_line, end_line + 1):
193+
start_ = start_col if l_ == start_line else 0
194+
end_ = end_col if l_ == end_line else None
195195
name_lines.append(
196-
code_lines[l][start_:end_].strip(' ')
196+
code_lines[l_][start_:end_].strip(' ')
197197
)
198198
yield self.output_class.arg_class(arg, name=' '.join(name_lines).strip(' ,'))
199199
else:

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ansi2html # pyup: ignore
22
Pygments==2.2.0
3-
Sphinx==1.6.3
3+
Sphinx==1.6.5
44
sphinxcontrib-websupport==1.0.1

tests/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
coverage==4.4.1
22
docutils==0.14
3-
flake8==3.4.1
3+
flake8==3.5.0
44
isort==4.2.15
55
pycodestyle==2.3.1
66
pyflakes==1.6.0
77
Pygments==2.2.0
8-
pytest==3.2.2
8+
pytest==3.2.3
99
pytest-cov==2.5.1
1010
pytest-isort==0.1.0
1111
pytest-mock==1.6.3

0 commit comments

Comments
 (0)