Remove redundant include

This commit is contained in:
64Core 2023-03-20 23:26:19 -05:00
parent e7bbe19839
commit 7c7a70d9fe

View file

@ -1,10 +1,9 @@
import os
import re
import json
import urllib
import datetime
from os import path
from pathlib import Path
from os import mkdir
import requests
from sys import argv
@ -137,7 +136,7 @@ class Game:
return
old_dir = f"{pathname}/old"
os.mkdir(old_dir)
mkdir(old_dir)
print(f"Moving {filename} to old/")
timestamp = datetime.datetime.now().strftime("%Y-%m-%d")