Skip to content

Commit

Permalink
Quick fix for missing init() parameter in Flowtuple3 class
Browse files Browse the repository at this point in the history
  • Loading branch information
salcock committed Apr 20, 2021
1 parent 61d4782 commit abc0f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyavro_stardust/flowtuple3.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ from pyavro_stardust.baseavro cimport AvroRecord, read_long, read_string, \
cdef class AvroFlowtuple3(AvroRecord):

def __init__(self):
super().__init__(ATTR_FT3_ASN + 1, ATTR_FT3_NETACQ_COUNTRY + 1)
super().__init__(ATTR_FT3_ASN + 1, ATTR_FT3_NETACQ_COUNTRY + 1, 0)

def __str__(self):
return "%u %08x %08x %u %u %u %u %u %u %s %s %u" % \
Expand Down

0 comments on commit abc0f56

Please sign in to comment.