summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Hayashi <yusuke8h@gmail.com>2021-05-22 12:34:08 +0900
committerGitHub <noreply@github.com>2021-05-21 20:34:08 -0700
commit2e2dfb186569faed40fc93fad2ebf8c5e4b80301 (patch)
treeff81d8bd4d90a67c7ced959420d38f8f166a5c4e
parentda197ee94e791640d82940396c19d2d82ca8defb (diff)
downloadpyflakes-2e2dfb186569faed40fc93fad2ebf8c5e4b80301.tar.gz
fix typo: annoation -> annotation (#636)
-rw-r--r--pyflakes/test/test_type_annotations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyflakes/test/test_type_annotations.py b/pyflakes/test/test_type_annotations.py
index f131034..6a66bcd 100644
--- a/pyflakes/test/test_type_annotations.py
+++ b/pyflakes/test/test_type_annotations.py
@@ -531,7 +531,7 @@ class TestTypeAnnotations(TestCase):
def test_type_cast_literal_str_to_str(self):
# Checks that our handling of quoted type annotations in the first
# argument to `cast` doesn't cause issues when (only) the _second_
- # argument is a literal str which looks a bit like a type annoation.
+ # argument is a literal str which looks a bit like a type annotation.
self.flakes("""
from typing import cast