mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 10:46:54 +00:00
correct and deprecate the value of indent_size_str
This commit is contained in:
parent
84c95766e6
commit
0b565fe349
1 changed files with 2 additions and 2 deletions
|
|
@ -92,8 +92,8 @@ class FileProcessor:
|
|||
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 * " "
|
||||
#: 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue