Skip to content

Commit d37af87

Browse files
committed
Remove unnecessary else
1 parent 0fcea64 commit d37af87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

can/bridge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ def get_config_list(it, separator, conf):
4949
el = next(it)
5050
if el == separator:
5151
break
52-
else:
53-
conf.append(el)
52+
53+
conf.append(el)
5454

5555

5656
def split_configurations(arg_list, separator="--"):

0 commit comments

Comments
 (0)