Skip to content

Commit

Permalink
Remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdwetering committed Mar 1, 2024
1 parent 9839339 commit dc419ea
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions ynca/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,6 @@ def put(self, subunit: str, funcname: str, parameter: str):
def get(self, subunit: str, funcname: str):
self.put(subunit, funcname, "?")

def set_communication_log_size(self, size: int):
"""
Set the amount of items to track in the communication log buffer.
Setting a new size will discard existing items.
"""
self._communication_log_buffer = LogBuffer(size)

def get_communication_log_items(self) -> List[str]:
"""
Get a list of logged communication items.
Expand Down

0 comments on commit dc419ea

Please sign in to comment.