Skip to content

Commit

Permalink
chore: make upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Feb 17, 2025
1 parent 7e94883 commit 6ec7859
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions coverage/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1111,8 +1111,8 @@ def _handle_decorated(self, node: ast.FunctionDef) -> set[ArcStart]:
last = None
for dec_node in decs:
dec_start = self.line_for_node(dec_node)
if last is not None and dec_start != last: # type: ignore[unreachable]
self.add_arc(last, dec_start) # type: ignore[unreachable]
if last is not None and dec_start != last:
self.add_arc(last, dec_start)
last = dec_start
assert last is not None
self.add_arc(last, main_line)
Expand Down
4 changes: 2 additions & 2 deletions requirements/dev.pip
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ flaky==3.8.1
# via -r /Users/ned/coverage/trunk/requirements/pytest.in
greenlet==3.1.1
# via -r requirements/dev.in
hypothesis==6.125.1
hypothesis==6.125.3
# via -r /Users/ned/coverage/trunk/requirements/pytest.in
id==1.5.0
# via twine
Expand Down Expand Up @@ -193,7 +193,7 @@ zipp==3.21.0
# via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
pip==25.0
pip==25.0.1
# via -r /Users/ned/coverage/trunk/requirements/pip.in
setuptools==75.8.0
# via
Expand Down
4 changes: 2 additions & 2 deletions requirements/mypy.pip
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ execnet==2.1.1
# via pytest-xdist
flaky==3.8.1
# via -r /Users/ned/coverage/trunk/requirements/pytest.in
hypothesis==6.125.1
hypothesis==6.125.3
# via -r /Users/ned/coverage/trunk/requirements/pytest.in
iniconfig==2.0.0
# via pytest
mypy==1.14.1
mypy==1.15.0
# via -r requirements/mypy.in
mypy-extensions==1.0.0
# via mypy
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip-tools.pip
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ zipp==3.21.0
# via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
pip==25.0
pip==25.0.1
# via pip-tools
setuptools==75.8.0
# via pip-tools
2 changes: 1 addition & 1 deletion requirements/pip.pip
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ virtualenv==20.28.1
# -r requirements/pip.in

# The following packages are considered to be unsafe in a requirements file:
pip==25.0
pip==25.0.1
# via -r requirements/pip.in
setuptools==75.8.0
# via -r requirements/pip.in
2 changes: 1 addition & 1 deletion requirements/pytest.pip
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ execnet==2.1.1
# via pytest-xdist
flaky==3.8.1
# via -r requirements/pytest.in
hypothesis==6.125.1
hypothesis==6.125.3
# via -r requirements/pytest.in
iniconfig==2.0.0
# via pytest
Expand Down

0 comments on commit 6ec7859

Please sign in to comment.