Skip to content

Commit df6821c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 246950f commit df6821c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orbiter/rules/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class DAGRule(Rule):
203203
@dag_rule
204204
def foo(val: dict) -> OrbiterDAG | None:
205205
if "id" in val:
206-
return OrbiterDAG(dag_id=val["id"], file_path=f"{val["id"]}.py")
206+
return OrbiterDAG(dag_id=val["id"], file_path=f"{val['id']}.py")
207207
else:
208208
return None
209209
```

0 commit comments

Comments
 (0)