Skip to content

Commit

Permalink
remove unnecessary tuple() call
Browse files Browse the repository at this point in the history
  • Loading branch information
zariiii9003 committed Oct 8, 2023
1 parent 2b79a3d commit 0d1f065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion can/viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def parse_args(args: List[str]) -> Tuple:
scaling.append(float(t))

if scaling:
data_structs[key] = (struct.Struct(fmt), *tuple(scaling))
data_structs[key] = (struct.Struct(fmt), *scaling)
else:
data_structs[key] = struct.Struct(fmt)

Expand Down

0 comments on commit 0d1f065

Please sign in to comment.