Skip to content
This repository was archived by the owner on Nov 13, 2023. It is now read-only.

Commit fae21f6

Browse files
committed
Update black formatting to 2023.1.0
1 parent 2033e4e commit fae21f6

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

tests/run_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import subprocess
77

88
if __name__ == "__main__":
9-
109
root = abspath(dirname(__file__))
1110
os.chdir(root)
1211

wpilib/_impl/logconfig.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010

1111
def configure_logging(verbose):
12-
1312
formatter = VerboseExceptionFormatter(fmt=log_format, datefmt=log_datefmt)
1413

1514
# console logging

wpilib/_impl/start.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ def start(self, robot_cls: wpilib.RobotBase) -> bool:
8282
return False
8383

8484
def _start(self, robot_cls: wpilib.RobotBase) -> bool:
85-
8685
hal.report(
8786
hal.tResourceType.kResourceType_Language,
8887
hal.tInstances.kLanguage_Python,

wpilib/_impl/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ def _print(*args, **kwargs):
3333

3434

3535
def __match_arglist(name, args, kwargs, templates, err, allow_extra_kwargs=False):
36-
3736
# TODO: we can do better at giving the user an error message...
3837

3938
if err:
@@ -67,7 +66,6 @@ def __match_arglist(name, args, kwargs, templates, err, allow_extra_kwargs=False
6766

6867
# Scan through all arguments and set valid to false if we find an issue.
6968
for j, (arg_name, arg_type_condition) in enumerate(template):
70-
7169
# Check kwargs first, then check args
7270
if arg_name in kwargs_copy:
7371
kwargs_copy.remove(arg_name)

0 commit comments

Comments
 (0)