Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 24, 2022
1 parent d9357a3 commit ce1780d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion yt_idv/scene_components/base_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ def _colormap_fragment_default(self):
@traitlets.default("base_quad")
def _default_base_quad(self):
bq = SceneData(
name="fullscreen_quad", vertex_array=VertexArray(name="tri", each=6),
name="fullscreen_quad",
vertex_array=VertexArray(name="tri", each=6),
)
fq = FULLSCREEN_QUAD.reshape((6, 3), order="C")
bq.vertex_array.attributes.append(
Expand Down
1 change: 0 additions & 1 deletion yt_idv/scene_components/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,3 @@ def _get_sanitized_iso_layers(self):
(iso_val - data_min) / (data_max - data_min) for iso_val in self.iso_layers
]
return normalized_isovals

1 change: 0 additions & 1 deletion yt_idv/shaders/plane.frag.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ void main()
if(val == 0) discard;
output_color = vec4(val);
}

0 comments on commit ce1780d

Please sign in to comment.