10 lines
96 B
Python
10 lines
96 B
Python
|
from sanic import Sanic
|
||
|
|
||
|
|
||
|
class Foo:
|
||
|
pass
|
||
|
|
||
|
|
||
|
app = Sanic("test", ctx=Foo())
|
||
|
reveal_type(app)
|