Skip to content

Commit

Permalink
chore: isort
Browse files Browse the repository at this point in the history
  • Loading branch information
Okabe-Junya committed Jul 16, 2024
1 parent 242b19a commit ff4957e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion rsurn.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ from typing import List, Tuple
class EnvironmentGene:
"""遺伝子の情報: 環境の振る舞い方を定義する"""

def __new__(cls: type["EnvironmentGene"], rho: int, nu: int, recentness: float, friendship: float) -> "EnvironmentGene":
def __new__(
cls: type["EnvironmentGene"],
rho: int,
nu: int,
recentness: float,
friendship: float,
) -> "EnvironmentGene":
"""遺伝子の情報: 環境の振る舞い方を定義する
rho, nu は主にモデル全体の挙動を定義し、recentness, friendship はエージェントの振る舞いを定義する。
Expand Down

0 comments on commit ff4957e

Please sign in to comment.