X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/292bceb9fd2d7a642351d06c02d2e751933baa5c..92f20d7f8493f9d0f27531f68b776fb435d53d2e:/tests/data/comments7.py diff --git a/tests/data/comments7.py b/tests/data/comments7.py index 0e2bd35..ca9d7c6 100644 --- a/tests/data/comments7.py +++ b/tests/data/comments7.py @@ -129,6 +129,8 @@ class C: ): ... +square = Square(4) # type: Optional[Square] + # output from .config import ( @@ -263,4 +265,7 @@ class C: def test_fails_invalid_post_data( self, pyramid_config, db_request, post_data, message ): - ... \ No newline at end of file + ... + + +square = Square(4) # type: Optional[Square]