Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
OnnoEbbens committed Oct 23, 2023
1 parent 92e0cf5 commit b3274b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nlmod/read/geotop.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_lithok_colors():
8: (216, 163, 32),
9: (95, 95, 255),
}
colors = {key: (x / 255 for x in color) for key, color in colors.items()}
colors = {key: (x / 255 for x in color,) for key, color in colors.items()}
return colors


Expand Down

0 comments on commit b3274b8

Please sign in to comment.