私はいくつかのPythonコードを持っています:
_name = "football.player"
_description = "Football Player"
def age_calc(self, cr, uid, ids, fields, arg, context=None):
,cc
NERD_commenterを押してコメントすると、次のようになります。
_name = "football.player"
# _description = "Football Player"
# def age_calc(self, cr, uid, ids, fields, arg, context=None):
しかし、コメントを外した後、それを使用,cu
すると次のようになります。
_name = "football.player"
_description = "Football Player"
def age_calc(self, cr, uid, ids, fields, arg, context=None):
このコメント化されていないブロックが、元の位置ではなく 1 スペースずれて表示されるのはなぜですか? そして、どうすれば修正できますか?