From d666c40623195c633c4fc27869074d82b9d66efd Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 11 Oct 2021 05:54:21 -0700 Subject: [PATCH] remove indent_size_str this was originally added only for pycodestyle which no longer uses it --- src/flake8/processor.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/flake8/processor.py b/src/flake8/processor.py index 6b7d3c4e..f6323885 100644 --- a/src/flake8/processor.py +++ b/src/flake8/processor.py @@ -92,8 +92,6 @@ def __init__( self.indent_level = 0 #: Number of spaces used for indentation self.indent_size = options.indent_size - #: String representing the space indentation (DEPRECATED) - self.indent_size_str = str(self.indent_size) #: Line number in the file self.line_number = 0 #: Current logical line