Skip to content

Commit

Permalink
Remove the use of emoji in console output
Browse files Browse the repository at this point in the history
could be problematic for certain consoles and Windows it seems

fixes #169
  • Loading branch information
hugoledoux committed Jul 13, 2023
1 parent 154d9f9 commit 2c20d7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cjio/cjio.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ def process_pipeline(processors, input, ignore_duplicate_keys, suppress_msg):
def info_cmd(long):
"""Output information about the dataset."""
def processor(cm):
print_cmd_status('Information ⬇️')
print_cmd_status('=== Information ===')
s = linesep.join(cm.get_info(long=long))
print_cmd_info(s)
print_cmd_status('Information ⬆️')
print_cmd_status('=== Information ===')
return cm
return processor

Expand Down

0 comments on commit 2c20d7c

Please sign in to comment.