We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8710783 commit a4de5f8Copy full SHA for a4de5f8
4 files changed
setup.py
@@ -17,7 +17,5 @@
17
"License :: OSI Approved :: MIT License",
18
"Operating System :: OS Independent",
19
],
20
- project_urls={
21
- "Bug Tracker": "https://github.com/nbuchwitz/python3-uhubctl/issues"
22
- },
+ project_urls={"Bug Tracker": "https://github.com/nbuchwitz/python3-uhubctl/issues"},
23
)
uhubctl/__init__.py
@@ -1,4 +1,5 @@
1
"""Wrapper module for uhubctl"""
2
+
3
from .usb import discover_hubs, Hub, Port
4
from . import utils
5
uhubctl/usb.py
"""Representation classes and helper functions"""
import re
from typing import List, Optional
uhubctl/utils.py
"""Utilities around uhubctl binary"""
import subprocess
from packaging import version
0 commit comments