1. ホーム
  2. python

PEP8: Python コード改行時のビジュアルインデントのため継続行がオーバーインデントされる

2022-02-11 14:51:47

PyCharm エディターで、コードの行が長くて改行が必要な場合、例えば \ シンボリックリンクを使用します。

if first_index \
   < 0 or second_index \
   > self._number_of_plates - 1:

しかし、エディタにはプロンプトが表示されます。PEP8: continuation line over-indent for visual indent, you can instead to use () to wrap the code in it without the symbol, e.g.

if (first_index < 0 or
    second_index > self._number_of_plates - 1):

取得元:https://my.oschina.net/liyan2013/blog/3082797