From 8dc2885d94cf6d5def48e392d0a9cf26c6cf678e Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 31 Dec 2018 22:26:21 -0800 Subject: [PATCH] Fix typo --- src/flake8/processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flake8/processor.py b/src/flake8/processor.py index 692d9d4..c31a5c4 100644 --- a/src/flake8/processor.py +++ b/src/flake8/processor.py @@ -270,7 +270,7 @@ class FileProcessor(object): """Retrieve the physical line at the specified line number.""" adjusted_line_number = line_number - 1 # NOTE(sigmavirus24): Some plugins choose to report errors for empty - # files on Line 1. In those casese, we shouldn't bother trying to + # files on Line 1. In those cases, we shouldn't bother trying to # retrieve a physical line (since none exist). if 0 <= adjusted_line_number < len(self.lines): return self.lines[adjusted_line_number]