Skip to content
This repository has been archived by the owner on May 31, 2019. It is now read-only.

Commit

Permalink
Fix mypy checking
Browse files Browse the repository at this point in the history
  • Loading branch information
c-bata committed Nov 28, 2016
1 parent b5caa3c commit ed4978e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kobin/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __call__(self, environ: Dict, start_response) -> List[bytes]:
return self.wsgi(environ, start_response)

def run(self, host='', port=8000):
from wsgiref.simple_server import make_server
from wsgiref.simple_server import make_server # type: ignore
httpd = make_server(host, port, self)
httpd.serve_forever()

Expand Down

0 comments on commit ed4978e

Please sign in to comment.