move imports to one line

This commit is contained in:
randomuser 2021-08-02 22:23:10 -05:00
parent b5af57d51d
commit 3a4f18beb4
1 changed files with 1 additions and 6 deletions

View File

@ -22,12 +22,7 @@
from socketserver import TCPServer
from socketserver import BaseRequestHandler
import subprocess
import argparse
import os
import time
import pwd
import grp
import subprocess, argparse, os, time, pwd, grp
class GopherError(BaseException): pass
class RequestError(GopherError): pass