|
@@ -145,9 +145,7 @@ class VarData:
|
|
|
position: Position of the hook in the component.
|
|
|
"""
|
|
|
immutable_imports: ImmutableParsedImportDict = tuple(
|
|
|
- sorted(
|
|
|
- ((k, tuple(sorted(v))) for k, v in parse_imports(imports or {}).items())
|
|
|
- )
|
|
|
+ (k, tuple(v)) for k, v in parse_imports(imports or {}).items()
|
|
|
)
|
|
|
object.__setattr__(self, "state", state)
|
|
|
object.__setattr__(self, "field_name", field_name)
|