Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 21, 2024
1 parent 2e724b3 commit 76e7b6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions felt/core/fsl_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1715,8 +1715,8 @@ def continuous_pseudocolor_renderer_to_fsl(
colors = []
labels = {}
for i in range(FslConverter.COLOR_RAMP_INTERPOLATION_STEPS):
val = (i * (max_value - min_value)
/ FslConverter.COLOR_RAMP_INTERPOLATION_STEPS + min_value)
val = (i * (max_value - min_value) /
FslConverter.COLOR_RAMP_INTERPOLATION_STEPS + min_value)
ok, red, green, blue, alpha = shader_function.shade(val)
if ok:
steps.append(val)
Expand Down

0 comments on commit 76e7b6e

Please sign in to comment.