From ff4957e172d9242718814567b9a7b5c5997aff6e Mon Sep 17 00:00:00 2001 From: Junya Okabe Date: Tue, 16 Jul 2024 12:08:40 +0900 Subject: [PATCH] chore: isort --- rsurn.pyi | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rsurn.pyi b/rsurn.pyi index 754218c..74fc53e 100644 --- a/rsurn.pyi +++ b/rsurn.pyi @@ -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 はエージェントの振る舞いを定義する。