Skip to content

Commit

Permalink
style: Apply fixes of recent black versions
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolai Buchwitz <nb@tipi-net.de>
  • Loading branch information
nbuchwitz committed May 21, 2024
1 parent 8710783 commit a4de5f8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,5 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
project_urls={
"Bug Tracker": "https://github.com/nbuchwitz/python3-uhubctl/issues"
},
project_urls={"Bug Tracker": "https://github.com/nbuchwitz/python3-uhubctl/issues"},
)
1 change: 1 addition & 0 deletions uhubctl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Wrapper module for uhubctl"""

from .usb import discover_hubs, Hub, Port
from . import utils

Expand Down
1 change: 1 addition & 0 deletions uhubctl/usb.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Representation classes and helper functions"""

import re
from typing import List, Optional

Expand Down
1 change: 1 addition & 0 deletions uhubctl/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities around uhubctl binary"""

import subprocess

from packaging import version
Expand Down

0 comments on commit a4de5f8

Please sign in to comment.