Skip to content

Commit

Permalink
Merge pull request #336 from NASA-AMMOS/issue-335
Browse files Browse the repository at this point in the history
Issue #335 - Make Seq sequence id optional on initialization
  • Loading branch information
MJJoyce authored Mar 19, 2021
2 parents 0a208c2 + 585e652 commit e350abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ait/core/seq.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__ (self, pathname=None, cmddict=None, id=None, version=0, **kwargs):
self.pathname = pathname
self.cmddict = cmddict or cmd.getDefaultCmdDict()
self.crc32 = None
self.seqid = int(id)
self.seqid = id
self.lines = [ ]
self.header = { }
self.version = version
Expand Down

0 comments on commit e350abd

Please sign in to comment.