Skip to content

Commit

Permalink
🚨 Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
Xen0Xys committed Apr 29, 2024
1 parent 3fee59c commit dd800ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ipyaladin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def fov(self) -> Angle:
return Angle(self._fov, unit="deg")

@fov.setter
def fov(self, fov: Union[float, Angle]):
def fov(self, fov: Union[float, Angle]) -> None:
if isinstance(fov, Angle):
fov = fov.deg
self._fov = fov
Expand Down

0 comments on commit dd800ec

Please sign in to comment.