Changeset 25c80a7 in ammosreader


Ignore:
Timestamp:
05/18/23 13:09:26 (2 years ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
AmmosSource, guix
Children:
338e792
Parents:
14d7f7d
Message:

fix another typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ammosreader/PDW.py

    r14d7f7d r25c80a7  
    3232        unix_time = np.datetime64('now', 'ns').astype(int)
    3333        print("Unix time", unix_time)
    34         if unix_time > nanoseconds:
     34        if nanoseconds >= unix_time:
    3535            raise OverflowError("Timestamp invalid")
    3636        time_of_arrival = np.datetime64(nanoseconds, 'ns')
Note: See TracChangeset for help on using the changeset viewer.