diff --git a/fonts/whitneybook.otf b/fonts/whitneybook.otf new file mode 100644 index 0000000..eb09378 Binary files /dev/null and b/fonts/whitneybook.otf differ diff --git a/fonts/whitneymedium.otf b/fonts/whitneymedium.otf new file mode 100644 index 0000000..3d9ac78 Binary files /dev/null and b/fonts/whitneymedium.otf differ diff --git a/generate_chat.py b/generate_chat.py index ad3162d..3ca99ce 100644 --- a/generate_chat.py +++ b/generate_chat.py @@ -5,6 +5,10 @@ import os from tkinter import Tk, filedialog import json +import warnings + +#Removes warnings +warnings.filterwarnings('ignore') # CONSTANTS WORLD_WIDTH = 1777 @@ -106,4 +110,4 @@ def save_images(lines, init_time, dt=30): with open(filename, encoding="utf8") as f: lines = f.read().splitlines() current_time = datetime.datetime.now() - save_images(lines, init_time=current_time) \ No newline at end of file + save_images(lines, init_time=current_time)