Fix Sanic arg
I assume the value of `__name__` (module name) was intended.
This commit is contained in:
parent
1d519ff407
commit
365adc1fda
|
@ -7,7 +7,7 @@ Middleware is registered via the middleware decorator, and can either be added a
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
```python
|
```python
|
||||||
app = Sanic('__name__')
|
app = Sanic(__name__)
|
||||||
|
|
||||||
@app.middleware
|
@app.middleware
|
||||||
async def halt_request(request):
|
async def halt_request(request):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user