Skip to content

Commit

Permalink
Version printing is added
Browse files Browse the repository at this point in the history
  • Loading branch information
Chenggong committed Jul 20, 2023
1 parent 684d991 commit b4c2e86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/match_xtck.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3

import argparse

import Sfilter

class PermEvent:
def __init__(self, at_index: int, time, up=True):
Expand Down Expand Up @@ -227,4 +227,5 @@ def longest_common_subsequence(seq1: time_seq_list, seq2: time_seq_list, dp_dict
else:
print(
f"{xtck.at_index:9}, {xtck.time:10}, {direction_dict[xtck.up]:9}, {cyli.at_index:9}, {cyli.time - cyli.resident_time:10}, {cyli.time:10}, {direction_dict[cyli.up]}")
print(f"Version: {Sfilter.__version__}")

0 comments on commit b4c2e86

Please sign in to comment.