イタリックテキスト### 前提・実現したいこと
ここに質問の内容を詳しく書いてください。
(例)PHP(CakePHP)で●●なシステムを作っています。
■■な機能を実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージunsupported operand type(s) for -: 'int' and 'NoneType'
### 該当のソースコード ```Python def set_payoffs(self): players = self.get_players() self.total_units = sum([p.units for p in players]) self.unit_price = Constants.total_capacity - self.total_units for p in players: p.payoff = (self.unit_price-p.cost) *p.units class Player(BasePlayer): cost = models.CurrencyField() def cost_player(self): if self.id_in_group == 1: self.cost = 1.5 if self.id_in_group == 2: self.cost = 2.5 if self.id_in_group == 3: self.cost = 3.5
試したこと
経済学部のクールノー競争の実験のためコードを組んでおり、被験者ごとに限界費用を変えようとしています。p.costを変えたりしてみてやったのですがなかなかです。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。