2

我收到一个错误:UnicodeEncodeError: 'charmap' codec can't encode character '\u2264' in position 0: character maps to when the pycodestyle check_files hit this line:

worksheet1.write_formula('E' + str(i), '=IF(F' + str(i) + '>G' + str(i) + ',"↑",IF(F' + str(i) + '=G' + str(i) + ',"↔","↓"))', arrows_format)

如何继续使用 Unicode 并使用 pycodestyle 检查器?(我假设它是导致错误的箭头字符)

这似乎很重要:要捕获 pycodestyle 输出(打印),我使用:

sys.stdout = open(ReportPath, 'w')

并将“打印”输出保存到文件中。我认为这很重要,因为 pycodestyle 尝试的“print()”实际上并没有发生。

4

0 回答 0