Skip to content

Commit 284ddc9

Browse files
committed
fix(types): allow optional dict by changing data to dict[str, Any] | None in frame_dag.py
1 parent 851f6d5 commit 284ddc9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CodeEntropy/levels/frame_dag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class FrameContext:
3333
shared: dict[str, Any]
3434
frame_index: int
3535
frame_covariance: Any = None
36-
data: dict[str, Any] = None
36+
data: dict[str, Any] | None = None
3737

3838

3939
class FrameGraph:

0 commit comments

Comments
 (0)