Open ldunham1 opened 4 years ago
https://github.com/mikemalinowski/qute/blob/736d3e57c9d3bb66e17bd4b61f24dc18e4faa349/qute/utilities/__init__.py#L1
It might be worthwhile ensuring you know exactly what is being imported from _core by providing an __all__ in the module. This will avoid you accidentally bringing over anything unintentionally.
__all__
https://github.com/mikemalinowski/qute/blob/736d3e57c9d3bb66e17bd4b61f24dc18e4faa349/qute/utilities/__init__.py#L1
It might be worthwhile ensuring you know exactly what is being imported from _core by providing an
__all__
in the module. This will avoid you accidentally bringing over anything unintentionally.