diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b019410..f6391e6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,11 +1,11 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/psf/black - rev: 24.8.0 + rev: 25.1.0 hooks: - id: black diff --git a/across_client/base/coords.py b/across_client/base/coords.py index 7453b2e..03b5c85 100644 --- a/across_client/base/coords.py +++ b/across_client/base/coords.py @@ -6,7 +6,7 @@ def coord_convert( - coord: Union[float, int, str, Quantity, Longitude, None] + coord: Union[float, int, str, Quantity, Longitude, None], ) -> Optional[float]: """Convert coordinates of various types either string, integer, astropy Longitude or astropy "deg" unit, to a float.