Skip to content

Commit b4ae3d5

Browse files
committed
test - Remove unused imports
1 parent 578adce commit b4ae3d5

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

tests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from pathlib import Path
44
from threading import Lock
55

6-
from socketserver import BaseRequestHandler, TCPServer, ThreadingMixIn
7-
from http.server import BaseHTTPRequestHandler, HTTPServer
6+
from socketserver import BaseRequestHandler, TCPServer
7+
from http.server import HTTPServer
88

99
TCPServer.allow_reuse_address = True
1010

tests/base_class.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
from decimal import Decimal
22
from datetime import datetime
3-
import os
43

54
import pytest
65

76
import overpy
87

9-
from tests import read_file
10-
118

129
class BaseTestAreas:
1310
@staticmethod

0 commit comments

Comments
 (0)