Skip to content

Commit 2478c6c

Browse files
committed
lint
1 parent 4a34147 commit 2478c6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

laika/astro_dog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def get_dgps_corrections(self, time, recv_pos):
163163
def add_qcom_polys(self, new_ephems: dict[str, list[Ephemeris]]):
164164
self._add_ephems(new_ephems, self.qcom_polys)
165165

166-
def add_orbits(self, new_ephems: dict[str, list[PolyEphemeris]]):
166+
def add_orbits(self, new_ephems: dict[str, list[Ephemeris]]):
167167
self._add_ephems(new_ephems, self.orbits)
168168

169169
def add_navs(self, new_ephems: dict[str, list[Ephemeris]]):
@@ -208,7 +208,7 @@ def download_and_parse(constellation, parse_rinex_nav_func):
208208
end_day = GPSTime(time.week, SECS_IN_DAY * (1 + (time.tow // SECS_IN_DAY)))
209209
self.navs_fetched_times.add(begin_day, end_day)
210210

211-
def download_parse_orbit(self, gps_time: GPSTime, skip_before_epoch=None) -> dict[str, list[PolyEphemeris]]:
211+
def download_parse_orbit(self, gps_time: GPSTime, skip_before_epoch=None) -> dict[str, list[Ephemeris]]:
212212
# Download multiple days to be able to polyfit at the start-end of the day
213213
time_steps = [gps_time - SECS_IN_DAY, gps_time, gps_time + SECS_IN_DAY]
214214
with ThreadPoolExecutor() as executor:

0 commit comments

Comments
 (0)