Skip to content

Commit

Permalink
0.2.21
Browse files Browse the repository at this point in the history
  • Loading branch information
smythi93 committed Jul 25, 2024
1 parent 3a4f40f commit c4fcc59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sflkit"
version = "0.2.20"
version = "0.2.21"
authors = [
{ name = "Marius Smytzek", email = "marius.smytzek@cispa.de" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/sflkit/runners/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def parse_tests(output: str) -> List[str]:
obj.set_parent(current)
current.add_child(obj)
elif current.depth >= obj.depth:
while current.depth >= obj.depth and current:
while current and current.depth >= obj.depth:
current = current.parent
if current is None:
trees.append(obj)
Expand Down

0 comments on commit c4fcc59

Please sign in to comment.