Format with default line-length=88 (was 79 with Sanic).
This commit is contained in:
@@ -22,9 +22,7 @@ class CustomRequest(Request[Sanic[CustomConfig, Foo], RequestContext]):
|
||||
return ctx
|
||||
|
||||
|
||||
app = Sanic(
|
||||
"test", config=CustomConfig(), ctx=Foo(), request_class=CustomRequest
|
||||
)
|
||||
app = Sanic("test", config=CustomConfig(), ctx=Foo(), request_class=CustomRequest)
|
||||
|
||||
|
||||
@app.get("/")
|
||||
|
||||
@@ -92,9 +92,7 @@ def run_check(path_location: str) -> str:
|
||||
),
|
||||
),
|
||||
)
|
||||
def test_check_app_default(
|
||||
path_location: str, expected: List[Tuple[str, int]]
|
||||
) -> None:
|
||||
def test_check_app_default(path_location: str, expected: List[Tuple[str, int]]) -> None:
|
||||
output = run_check(f"samples/{path_location}")
|
||||
|
||||
for text, number in expected:
|
||||
|
||||
Reference in New Issue
Block a user