Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Jul 30, 2018
1 parent 537d9ee commit 36dc9c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion georinex/obs2.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def rinexobs2(fn: Path, use: Any,
data: xarray.Dataset = None

for ln in f:
# %% time
# %% time
try:
time = _timeobs(ln)
except ValueError: # garbage between header and RINEX data
Expand Down
2 changes: 1 addition & 1 deletion tests/test_nav2.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_mangled():

times = nav.time.values.astype('datetime64[us]').astype(datetime)

assert times == datetime(2018,6,22,8)
assert times == datetime(2018, 6, 22, 8)


def test_tlim():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_obs2.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_mangled():

times = obs.time.values.astype('datetime64[us]').astype(datetime)

assert (times == (datetime(2018,6,22,6,17,30), datetime(2018,6,22,6,17,45), datetime(2018,6,22,6,18))).all()
assert (times == (datetime(2018, 6, 22, 6, 17, 30), datetime(2018, 6, 22, 6, 17, 45), datetime(2018, 6, 22, 6, 18))).all()


def test_Z_lzw():
Expand Down

0 comments on commit 36dc9c6

Please sign in to comment.