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 16, 2023
1 parent 3c32cd3 commit 3ede441
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion colour_visuals/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,9 @@ def __init__(

scene = Scene()

scene.add(Background(None, BackgroundMaterial(np.array([0.18, 0.18, 0.18]))))
scene.add(
Background(None, BackgroundMaterial(np.array([0.18, 0.18, 0.18])))
)

visual_1 = VisualGrid()
scene.add(visual_1)
Expand Down
2 changes: 1 addition & 1 deletion colour_visuals/rgb_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(
append_alpha_channel(colors, opacity)
),
),
gfx.PointsMaterial(color_mode="vertex", vertex_sizes=True)
gfx.PointsMaterial(color_mode="vertex", vertex_sizes=True),
)


Expand Down
1 change: 1 addition & 0 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def formatting(
with ctx.cd("utilities"):
ctx.run("./unicode_to_ascii.py")


@task
def quality(
ctx: Context,
Expand Down

0 comments on commit 3ede441

Please sign in to comment.