Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Mar 2, 2024
1 parent 89f4fed commit 735ff70
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion tools/gamut_3d_plotly.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,11 @@ def main():
)
parser.add_argument('--gmap', default='raytrace', help="Gamut mapping algorithm.")
parser.add_argument('--gmap-colors', default='', help='Color(s) to gamut map, separated by semicolons.')
parser.add_argument('--colors', default='', help='Plot arbitrary color points. Colors are separated with semicolons.')
parser.add_argument(
'--colors',
default='',
help='Plot arbitrary color points. Colors are separated with semicolons.'
)

# Interpolation visualization
parser.add_argument('--interp-colors', default='', help='Interpolation colors separated by semicolons.')
Expand Down
2 changes: 1 addition & 1 deletion tools/raytrace_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
)
)

title = args.title if args.title else title
title = args.title if args.title else ''
go.Figure(
layout={
'title': title,
Expand Down

0 comments on commit 735ff70

Please sign in to comment.