staticmethod in module not properly exposed / accessible from outside of module
Acton Version
0.21.0
Steps to Reproduce and Observed Behavior
I want to call the staticmethod from_json on the TestInfo class in testing.TestInfo. I get an error. My current work around is to do from testing import TestInfo but this should not be necessary, see
https://github.com/actonlang/acton/pull/1757/files#diff-ad702e1f2fe61135b8b43f1c0063a44f36a80aa12414d3d118066b39a7cb7d9bR6
To reproduce, try changing https://github.com/actonlang/acton/pull/1757/files#diff-8912c4341e78ba2504029fcf3fcc1b37ee141d14b1833932f3a3541fffd54509R744 to access testing.TestInfo.from_json instead!
Expected Behavior
It should work!
@nordlander here's that bug we looked at the other day, I hope the reproduction via my soon-to-be-merged code is simple enough?
Yep! And I already know where the error is :)