Skip to content

Commit

Permalink
stringify ANY
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-bc committed Feb 5, 2024
1 parent 4a87e05 commit fa46297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fprime_gds/common/encoders/seq_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def write(self, seq_cmds_list):
for cmd in seq_cmds_list:
sequence += self.__binaryCmdRecord(cmd)
size = len(sequence)
tb_txt = b"ANY" if self.__timebase == 0xFFFF else hex(self.__timebase)
tb_txt = "ANY" if self.__timebase == 0xFFFF else hex(self.__timebase)

print(f"Sequence is {size} bytes with timebase {tb_txt}")

Expand Down

0 comments on commit fa46297

Please sign in to comment.