Refactor the code to make it comply with PEP-8 standards:Convert all class definitions to CamelCase style.

(issue 37)
This commit is contained in:
Liu Zhicong
2023-08-23 11:19:16 -07:00
parent 23963adc6e
commit 5454009e7b
21 changed files with 601 additions and 603 deletions
+3 -3
View File
@@ -4,14 +4,14 @@
from abc import ABC, abstractmethod
from typing import Callable
from .agent import agent_msg
from .agent import AgentMsg
class environment_event(ABC):
class EnvironmentEvent(ABC):
@abstractmethod
def display(self) -> str:
pass
class environment:
class Environment:
def __init__(self) -> None:
pass