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
I am not against it but I tried it at some point but met issues, I don't remember the details but that created a weird circular import problem in the init.py files, and created lots of nesting and the builtin_specs, which could not access SequencePattern using relative imports "." or ".." anymore.
I like the classification, but I'd wait a bit and leave this issue open until there are bit more specifications to classify.
I think the circular import problem comes from from .SequencePattern import SequencePattern
since the dir name SequencePattern is exactly same with file name SequencePattern.py
using relative import here change the SequencePattern in the namespace ,
like this:
The text was updated successfully, but these errors were encountered: