started operations

This commit is contained in:
John Lancaster
2026-02-21 14:44:45 -06:00
parent 8ec77b51fe
commit b2b90555c2
5 changed files with 67 additions and 3 deletions

View File

@@ -301,6 +301,7 @@ class TestDAGComplexScenarios:
g["foo"] -= {"bar"}
assert len(g["foo"]) == 2
assert "bar" not in g["foo"]
assert set(g["foo"]) == {"baz", "d"}
def test_type_hints_with_ints(self) -> None:
g = DAG[int]()