We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8de4fc4 commit 3d7c4b9Copy full SHA for 3d7c4b9
src/bluetooth_2_usb/args.py
@@ -158,6 +158,18 @@ def debug(self) -> bool:
158
def version(self) -> bool:
159
return self._version
160
161
+ def __str__(self) -> str:
162
+ return (
163
+ f"Arguments(device_ids={self.device_ids}, "
164
+ f"auto_discover={self.auto_discover}, "
165
+ f"grab_devices={self.grab_devices}, "
166
+ f"list_devices={self.list_devices}, "
167
+ f"log_to_file={self.log_to_file}, "
168
+ f"log_path={self.log_path}, "
169
+ f"debug={self.debug}, "
170
+ f"version={self.version})"
171
+ )
172
+
173
174
def parse_args() -> Arguments:
175
parser = CustomArgumentParser(
0 commit comments