Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
pushfoo committed Oct 26, 2024
1 parent 44716e1 commit 8514d52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion arcade/camera/camera_2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
from typing_extensions import Self

from arcade.camera.data_types import (
DEFAULT_FAR,
DEFAULT_NEAR_ORTHO,
CameraData,
OrthographicProjectionData,
ZeroProjectionDimension, DEFAULT_NEAR_ORTHO, DEFAULT_FAR,
ZeroProjectionDimension,
)
from arcade.camera.projection_functions import (
generate_orthographic_matrix,
Expand Down
4 changes: 2 additions & 2 deletions arcade/camera/data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from __future__ import annotations

from contextlib import contextmanager
from typing import Generator, Protocol, Final
from typing import Final, Generator, Protocol

from pyglet.math import Vec2, Vec3
from typing_extensions import Self
Expand Down Expand Up @@ -39,7 +39,7 @@

DEFAULT_FAR: Final[float] = 100.0
"""The default forward-facing depth cutoff for all Arcade cameras.
Unless a camera is provided a different value, anything further away than this
value will not be drawn.
"""
Expand Down

0 comments on commit 8514d52

Please sign in to comment.