Skip to content

Commit

Permalink
Remove unnecessary debug print statements (#747)
Browse files Browse the repository at this point in the history
  • Loading branch information
agners authored Jun 10, 2024
1 parent 9ec2a26 commit 36ceb2e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion matter_server/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ def _register_api_commands(self) -> None:
"""Register all methods decorated as api_command."""
for cls in (self, self._device_controller, self.vendor_info):
for attr_name in dir(cls):
print(attr_name)
if attr_name.startswith("_"):
continue
val = getattr(cls, attr_name)
Expand Down

0 comments on commit 36ceb2e

Please sign in to comment.