Skip to content

Commit

Permalink
fix python2 style print in example
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeplf committed Sep 11, 2023
1 parent d7a7e70 commit 0db6990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ def main():
for trace_results in traces_results:
# trace_result is a dictionary, with as keys the requested features
for feature_name, feature_values in trace_results.items():
print "Feature %s has the following values: %s" % \
(feature_name, ', '.join([str(x) for x in feature_values]))
print("Feature %s has the following values: %s" %
(feature_name, ', '.join([str(x) for x in feature_values])))


if __name__ == '__main__':
Expand Down

0 comments on commit 0db6990

Please sign in to comment.