Skip to content

Commit c873ec2

Browse files
committed
Updated for pre-commit hooks
1 parent 4934ac3 commit c873ec2

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

adafruit_shell.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,7 @@ def select_n(message, selections):
5252

5353
for index, selection in enumerate(selections):
5454
options.append(
55-
{
56-
"selector": str(index + 1),
57-
"prompt": selection,
58-
"return": index + 1,
59-
}
55+
{"selector": str(index + 1), "prompt": selection, "return": index + 1,}
6056
)
6157
return prompt.options(message, options)
6258

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@
3434
# Author details
3535
author="Adafruit Industries",
3636
author_email="[email protected]",
37-
install_requires=[
38-
"clint",
39-
"Adafruit-PlatformDetect",
40-
],
37+
install_requires=["clint", "Adafruit-PlatformDetect",],
4138
# Choose your license
4239
license="MIT",
4340
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers

0 commit comments

Comments
 (0)