Adds an argument to the list. Args: argument: Sets the arguments
(self, argument: str)
| 398 | return self._arguments |
| 399 | |
| 400 | def add_argument(self, argument: str) -> None: |
| 401 | """Adds an argument to the list. |
| 402 | |
| 403 | Args: |
| 404 | argument: Sets the arguments |
| 405 | """ |
| 406 | if argument: |
| 407 | self._arguments.append(argument) |
| 408 | else: |
| 409 | raise ValueError("argument can not be null") |
| 410 | |
| 411 | def ignore_local_proxy_environment_variables(self) -> None: |
| 412 | """Ignore HTTP_PROXY and HTTPS_PROXY environment variables. |