Spell correction of the word sever for server

This commit is contained in:
Matheus Felipe
2022-12-01 05:28:19 -03:00
committed by GitHub
parent 6bfd666f4c
commit b5dc90c9fc

View File

@@ -1,8 +1,8 @@
import gunicorn.app.base
'''
Development sever for RPC
In production, use gunicorn daemon to manage the server
Development server for RPC
In production, use gunicorn daemon to manage the server.
'''
class DevelopmentServer(gunicorn.app.base.BaseApplication):
def __init__(self, app, options=None):
@@ -17,4 +17,4 @@ class DevelopmentServer(gunicorn.app.base.BaseApplication):
self.cfg.set(key.lower(), value)
def load(self):
return self.application
return self.application