Skip to content

Commit ce1780d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d9357a3 commit ce1780d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

yt_idv/scene_components/base_component.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ def _colormap_fragment_default(self):
203203
@traitlets.default("base_quad")
204204
def _default_base_quad(self):
205205
bq = SceneData(
206-
name="fullscreen_quad", vertex_array=VertexArray(name="tri", each=6),
206+
name="fullscreen_quad",
207+
vertex_array=VertexArray(name="tri", each=6),
207208
)
208209
fq = FULLSCREEN_QUAD.reshape((6, 3), order="C")
209210
bq.vertex_array.attributes.append(

yt_idv/scene_components/blocks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,3 @@ def _get_sanitized_iso_layers(self):
145145
(iso_val - data_min) / (data_max - data_min) for iso_val in self.iso_layers
146146
]
147147
return normalized_isovals
148-

yt_idv/shaders/plane.frag.glsl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ void main()
88
if(val == 0) discard;
99
output_color = vec4(val);
1010
}
11-

0 commit comments

Comments
 (0)