diff options
| author | Anthony Sottile <asottile@umich.edu> | 2021-03-14 11:58:03 -0700 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2021-03-14 11:58:03 -0700 |
| commit | 40aba49d0d0833edf65ee9d3c3a2b511bac6f2dd (patch) | |
| tree | 80fe51912a9d61bfb9ac3127aeaaf3eb2699b0cd /src/flake8 | |
| parent | ac9c66e80bed84e78fbb803e6dd9e33cc4c741ca (diff) | |
| download | flake8-40aba49d0d0833edf65ee9d3c3a2b511bac6f2dd.tar.gz | |
upgrade pycodestyle to 2.7.0
Diffstat (limited to 'src/flake8')
| -rw-r--r-- | src/flake8/processor.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/flake8/processor.py b/src/flake8/processor.py index 75b8de7..ad011c3 100644 --- a/src/flake8/processor.py +++ b/src/flake8/processor.py @@ -85,6 +85,8 @@ class FileProcessor(object): self.indent_level = 0 #: Number of spaces used for indentation self.indent_size = options.indent_size + #: String representing the space indentation + self.indent_size_str = self.indent_size * " " #: Line number in the file self.line_number = 0 #: Current logical line |
