Skip to content

Commit

Permalink
Remove emojis for windows compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
nygrenh committed Oct 6, 2023
1 parent 8c95e3b commit edcb8f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def main():
# To make Gooey work, we need to use argparse
parser = ArgumentParser(add_help=True)
args = parser.parse_args()
print("🚀 Starting the program")
print("Starting the program")

# Change pwd to the directory of this file
abspath = os.path.abspath(current_file_path)
Expand Down Expand Up @@ -270,7 +270,7 @@ def sort_key(x):

workbook.close()
print()
print(f"Processing complete. Results written to {excel_output_path}")
print(f"Processing complete. Results written to {excel_output_path}")


if __name__ == "__main__":
Expand Down

0 comments on commit edcb8f5

Please sign in to comment.