Skip to content

Commit

Permalink
fix order of stmt for cleaner code
Browse files Browse the repository at this point in the history
  • Loading branch information
Lendemor committed Dec 12, 2024
1 parent cd649a0 commit 9c89e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reflex/vars/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ def __init__(
object.__setattr__(self, "field_name", field_name)
object.__setattr__(self, "imports", immutable_imports)
object.__setattr__(self, "hooks", tuple(hooks or {}))
object.__setattr__(self, "position", position or None)
object.__setattr__(self, "deps", tuple(deps or []))
object.__setattr__(self, "position", position or None)

def old_school_imports(self) -> ImportDict:
"""Return the imports as a mutable dict.
Expand Down

0 comments on commit 9c89e98

Please sign in to comment.