You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jsonclass.py uses import to import a module. It looks like it expects import to return the imported module, but it doesn't work that way for nested modules: e.g., if I import a.b.c, import returns a, not c.
I'll attach a patch to fix this.
The text was updated successfully, but these errors were encountered:
jsonclass.py uses import to import a module. It looks like it expects import to return the imported module, but it doesn't work that way for nested modules: e.g., if I import a.b.c, import returns a, not c.
I'll attach a patch to fix this.
The text was updated successfully, but these errors were encountered: