Skip to content

Commit a007d85

Browse files
committed
fix
1 parent 29883a9 commit a007d85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rez/suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def validate(self) -> None:
430430
def to_dict(self):
431431
contexts_ = {}
432432
for k, data in self.contexts.items():
433-
data_ = cast(dict[str, Any], data.copy())
433+
data_ = cast("dict[str, Any]", data.copy())
434434
if "context" in data_:
435435
del data_["context"]
436436
if "loaded" in data_:

0 commit comments

Comments
 (0)