Skip to content

Commit add23e2

Browse files
committed
🚨 Fix black issues
1 parent 6181a55 commit add23e2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/tess_locator/locate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def locate(
1414
target: Union[SkyCoord, str],
1515
time: Union[Time, str, List[str]] = None,
1616
sector: Union[int, List[int]] = None,
17-
aberrate: bool = True
17+
aberrate: bool = True,
1818
) -> TessCoordList:
1919
"""Locate a target in the TESS FFI data set."""
2020
# Allow the target coordinate to be instantiated from a string

src/tess_locator/tesscoord.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class TessCoord:
3434
code (int): Exception error code.
3535
3636
"""
37+
3738
sector: int = attr.ib()
3839
camera: int = attr.ib(validator=attr.validators.in_([1, 2, 3, 4]))
3940
ccd: int = attr.ib(validator=attr.validators.in_([1, 2, 3, 4]))

0 commit comments

Comments
 (0)