This issue suggests replacing calls to the print function in the __main__.py file with sys.stdout.write. This is mainly proposed to fix the T201 linter rule, which is currently being suppressed. Additionally, in CLI programs, writing directly to standard output is preferred over using the print function, which is commonly used for debugging.
This issue suggests replacing calls to the
printfunction in the__main__.pyfile withsys.stdout.write. This is mainly proposed to fix theT201linter rule, which is currently being suppressed. Additionally, in CLI programs, writing directly to standard output is preferred over using theprintfunction, which is commonly used for debugging.