Skip to content

Commit

Permalink
fix(PyAPI): 🐛 fix mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
asdawej committed Mar 29, 2024
1 parent ef82c9a commit 5d32ac1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions CAPI/python/PyAPI/DebugAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,6 @@ def PrintSweeper(self) -> None:
def PrintTeam(self) -> None:
pass

def PrintTeam(self) -> None:
pass

def PrintSelfInfo(self) -> None:
sweeper = self.__logic.GetSelfInfo()
self.__logger.info("******sweeper Info******")
Expand Down
4 changes: 2 additions & 2 deletions CAPI/python/PyAPI/Interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def GetHomeHp(self) -> int:
pass

@abstractmethod
def GetMoney(self) -> int:
def GetEnergy(self) -> int:
pass

@abstractmethod
Expand Down Expand Up @@ -214,7 +214,7 @@ def GetHomeHp(self) -> int:
pass

@abstractmethod
def GetMoney(self) -> int:
def GetEnergy(self) -> int:
pass

@abstractmethod
Expand Down

0 comments on commit 5d32ac1

Please sign in to comment.