From 7c7a70d9fe606819698865af9c81fdd4a9ded7b2 Mon Sep 17 00:00:00 2001 From: 64Core Date: Mon, 20 Mar 2023 23:26:19 -0500 Subject: [PATCH] Remove redundant include --- itchiodl/game.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/itchiodl/game.py b/itchiodl/game.py index c0643ee..6f00590 100644 --- a/itchiodl/game.py +++ b/itchiodl/game.py @@ -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")