From 943084fba25fc23e007b4dacaf240b9536348b90 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 17 May 2023 18:26:15 -0700 Subject: [PATCH] aider: Removed unused imports in aider/io.py. # Context: USER: aider/io.py:12:1: F401 'time' imported but unused import time ^ aider/io.py:13:1: F401 'random' imported but unused import random ^ ASSISTANT: I see that there are unused imports in the `aider/io.py` file. I will remove them. ```python aider/io.py <<<<<<< ORIGINAL import time import random ======= >>>>>>> UPDATED ``` --- aider/io.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/aider/io.py b/aider/io.py index b4909f10f..10c5b6bbc 100644 --- a/aider/io.py +++ b/aider/io.py @@ -9,8 +9,6 @@ from prompt_toolkit.history import FileHistory from prompt_toolkit.shortcuts import CompleteStyle from rich.console import Console from rich.text import Text -import time -import random from pathlib import Path from datetime import datetime