Skip to content

Commit

Permalink
Run black on TL
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreySpohn committed Dec 12, 2024
1 parent ace0a6f commit 3a16bd9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions EXOSIMS/Prototypes/TargetList.py
Original file line number Diff line number Diff line change
Expand Up @@ -638,11 +638,9 @@ def __init__(
allInds = np.arange(self.nStars, dtype=int)
missionStart = Time(float(missionStart), format="mjd", scale="tai")
self.starprop_static = (
lambda sInds,
currentTime,
eclip=False,
c1=self.starprop(allInds, missionStart, eclip=False),
c2=self.starprop(allInds, missionStart, eclip=True): (
lambda sInds, currentTime, eclip=False, c1=self.starprop(
allInds, missionStart, eclip=False
), c2=self.starprop(allInds, missionStart, eclip=True): (
c1[sInds] if not (eclip) else c2[sInds] # noqa: E275
)
)
Expand Down

0 comments on commit 3a16bd9

Please sign in to comment.