Skip to content

Commit

Permalink
Fix "abstractclassmethod" typo in command builder interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mssalvatore committed Jun 11, 2024
1 parent c40daad commit adbd06a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agentpluginapi/i_linux_agent_command_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_command(self) -> str:
Gets the resulting command
"""

@abc.abstractclassmethod
@abc.abstractmethod
def reset_command(self):
"""
Resets the command
Expand Down
2 changes: 1 addition & 1 deletion agentpluginapi/i_windows_agent_command_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def get_command(self) -> str:
Gets the resulting command
"""

@abc.abstractclassmethod
@abc.abstractmethod
def reset_command(self):
"""
Resets the command
Expand Down

0 comments on commit adbd06a

Please sign in to comment.