Skip to content

Commit 3ede441

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

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

colour_visuals/grid.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,9 @@ def __init__(
207207

208208
scene = Scene()
209209

210-
scene.add(Background(None, BackgroundMaterial(np.array([0.18, 0.18, 0.18]))))
210+
scene.add(
211+
Background(None, BackgroundMaterial(np.array([0.18, 0.18, 0.18])))
212+
)
211213

212214
visual_1 = VisualGrid()
213215
scene.add(visual_1)

colour_visuals/rgb_scatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(
7979
append_alpha_channel(colors, opacity)
8080
),
8181
),
82-
gfx.PointsMaterial(color_mode="vertex", vertex_sizes=True)
82+
gfx.PointsMaterial(color_mode="vertex", vertex_sizes=True),
8383
)
8484

8585

tasks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ def formatting(
128128
with ctx.cd("utilities"):
129129
ctx.run("./unicode_to_ascii.py")
130130

131+
131132
@task
132133
def quality(
133134
ctx: Context,

0 commit comments

Comments
 (0)