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
The __init__.py file at the top-level of site-packages may be imported automatically when anything else from that directory is imported. This could lead to issues if any content is added to this file.
The names __init__.py, sdk_utils.py and utils.py are not very unique and may easily clash with modules from other Python packages.
I recommend moving these files into a single top-level module or prefixing the file names with something unique to prevent issues.
The text was updated successfully, but these errors were encountered:
Installing tb-mqtt-client results in the following files in python's
site-packages
directory:This gives me a few concerns:
__init__.py
file at the top-level of site-packages may be imported automatically when anything else from that directory is imported. This could lead to issues if any content is added to this file.__init__.py
,sdk_utils.py
andutils.py
are not very unique and may easily clash with modules from other Python packages.I recommend moving these files into a single top-level module or prefixing the file names with something unique to prevent issues.
The text was updated successfully, but these errors were encountered: