Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Nov 19, 2023
1 parent acf29ce commit 7fcc421
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_runserver_serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from unittest.mock import MagicMock

import pytest
from aiohttp.web import Application, Request, Response
from aiohttp.web import Application, AppKey, Request, Response
from aiohttp_jinja2 import static_root_key
from pytest_toolbox import mktree

Expand Down Expand Up @@ -115,7 +115,7 @@ def test_fmt_size_large(value, result):
assert fmt_size(value) == result


class DummyApplication(Dict[web.AppKey[Any], object]):
class DummyApplication(Dict[AppKey[Any], object]):
_debug = False

def __init__(self):
Expand Down

0 comments on commit 7fcc421

Please sign in to comment.