Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ ignore = [
##################################################################################################
"B008", # Do not perform function call `typer.Option` in argument defaults; instead, perform the call within the function, or read the default from a module-level singleton variable
"B904", # Within an `except` clause, raise exceptions with `raise ... from err` or `raise ... from None` to distinguish them from errors in exception handling
"C408", # Unnecessary `dict` call (rewrite as a literal)
"FURB110", # Replace ternary `if` expression with `or` operator
"FURB113", # Use `lines.extend((" " * self.indentation + "}", "}"))` instead of repeatedly calling `lines.append()`
"FURB177", # Prefer `Path.cwd()` over `Path().resolve()` for current-directory lookups
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/sdk/test_topological_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def test_topological_sort_empty():
assert topological_sort(dict()) == []
assert topological_sort({}) == []


def test_topological_sort_with_cycle_raises_error():
Expand Down