Removed flake8, black and isort; moving towards ruff default settings instead.

This commit is contained in:
L. Kärkkäinen
2023-10-25 04:12:24 +01:00
parent 469cb1663b
commit e4daf1ab21
197 changed files with 6 additions and 321 deletions

View File

@@ -5,10 +5,8 @@ import sys
import ujson as json
import uvloop
from aiohttp import web
loop = uvloop.new_event_loop()
asyncio.set_event_loop(loop)

View File

@@ -1,7 +1,6 @@
# Run with: gunicorn --workers=1 --worker-class=meinheld.gmeinheld.MeinheldWorker -b :8000 simple_server:app
import bottle
import ujson
from bottle import route

View File

@@ -4,10 +4,8 @@ import logging
import ujson
import uvloop
from kyoukai import HTTPRequestContext, Kyoukai
loop = uvloop.new_event_loop()
asyncio.set_event_loop(loop)

View File

@@ -5,7 +5,6 @@ import timeit
from sanic.response import json
currentdir = os.path.dirname(
os.path.abspath(inspect.getfile(inspect.currentframe()))
)

View File

@@ -5,7 +5,6 @@ import sys
from sanic import Sanic
from sanic.response import json
currentdir = os.path.dirname(
os.path.abspath(inspect.getfile(inspect.currentframe()))
)

View File

@@ -6,7 +6,6 @@ from sanic import Sanic
from sanic.exceptions import ServerError
from sanic.response import json, text
currentdir = os.path.dirname(
os.path.abspath(inspect.getfile(inspect.currentframe()))
)

View File

@@ -1,6 +1,5 @@
# Run with: python simple_server.py
import ujson
from tornado import ioloop, web

View File

@@ -2,7 +2,6 @@
""" Minimal helloworld application.
"""
import ujson
from wheezy.http import HTTPResponse, WSGIApplication
from wheezy.routing import url
from wheezy.web.handlers import BaseHandler
@@ -37,7 +36,6 @@ main = WSGIApplication(
if __name__ == "__main__":
import sys
from wsgiref.simple_server import make_server
try: