We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a4571d commit 16edba0Copy full SHA for 16edba0
src/reactpy/core/hooks.py
@@ -535,7 +535,7 @@ def strictly_equal(x: Any, y: Any) -> bool:
535
getattr(x.__code__, attr) == getattr(y.__code__, attr)
536
for attr in dir(x.__code__)
537
if attr.startswith("co_")
538
- and attr not in {"co_positions", "co_linetable", "co_lines"}
+ and attr not in {"co_positions", "co_linetable", "co_lines", "co_lnotab"}
539
)
540
541
# Check via the `==` operator if possible
0 commit comments