Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 184561c

Browse files
committedMay 28, 2024·
misc: Fix linter errors.
Signed-off-by: iabdalkader <[email protected]>
1 parent 4c359e1 commit 184561c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎examples/example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def user_task(client):
4343
if __name__ == "__main__":
4444
# Parse command line args.
4545
parser = argparse.ArgumentParser(description="arduino_iot_cloud.py")
46-
parser.add_argument("-d", "--debug", action="store_true", help="Enable debugging messages")
47-
parser.add_argument("-s", "--sync", action="store_true", help="Run in synchronous mode")
46+
parser.add_argument("-d", "--debug", action="store_true", help="Enable debugging messages")
47+
parser.add_argument("-s", "--sync", action="store_true", help="Run in synchronous mode")
4848
args = parser.parse_args()
4949

5050
# Assume the host has an active Internet connection.

‎tests/ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def wdt_task(client, ts=[None]):
4848
"-f", "--file-auth", action="store_true", help="Use key/cert files"
4949
)
5050
parser.add_argument(
51-
"-s", "--sync", action="store_true", help="Run in synchronous mode"
51+
"-s", "--sync", action="store_true", help="Run in synchronous mode"
5252
)
5353
args = parser.parse_args()
5454

0 commit comments

Comments
 (0)
Please sign in to comment.