There are several places in the repo where the import ... from * pattern is used. It might be a good idea to fix this.
|
from .document import * |
|
from .elements import * |
|
from .templates import * |
My only concern is that this file will need to be updated each time a new component is added. I feel like this is something that will be forgotten and cause strange import issues on the users end. Since there are no third party dependencies, I don't think there's a huge risk to keep this as-is, but I am open to changing it.
There are several places in the repo where the
import ... from *pattern is used. It might be a good idea to fix this.SnakeMD/snakemd/__init__.py
Lines 10 to 12 in 21256ec
My only concern is that this file will need to be updated each time a new component is added. I feel like this is something that will be forgotten and cause strange import issues on the users end. Since there are no third party dependencies, I don't think there's a huge risk to keep this as-is, but I am open to changing it.