Skip to content

Commit 9403e7c

Browse files
committed
ruff format
1 parent b001906 commit 9403e7c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

robotpy_ext/autonomous/selector.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,9 @@ def __init__(self, autonomous_pkgname, *args, **kwargs):
196196
elif len(default_modes) != 1:
197197
if not wpilib.DriverStation.isFMSAttached():
198198
raise RuntimeError(
199-
"More than one autonomous mode was specified as default! (modes: {})".format(", ".join(default_modes))
199+
"More than one autonomous mode was specified as default! (modes: {})".format(
200+
", ".join(default_modes)
201+
)
200202
)
201203

202204
# must PutData after setting up objects

robotpy_ext/misc/orderedclass.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
Taken from the python documentation, distributed under
3-
that same license
2+
Taken from the python documentation, distributed under
3+
that same license
44
"""
55

66
import collections

0 commit comments

Comments
 (0)