Skip to content

Commit c885f3b

Browse files
bdrungigaw
authored andcommitted
examples: Fix wrong indentation in discover-loop.py
Running `examples/discover-loop.py` fails: ``` File "examples/discover-loop.py", line 59 c.disconnect() ^ IndentationError: expected an indented block after 'try' statement on line 58 ``` Signed-off-by: Benjamin Drung <[email protected]>
1 parent ecfba16 commit c885f3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/discover-loop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def disc_supp_str(dlp_supp_opts):
5656
sys.exit(f'Failed to discover: {e}')
5757

5858
try:
59-
c.disconnect()
59+
c.disconnect()
6060
except Exception as e:
6161
sys.exit(f'Failed to disconnect: {e}')
6262

0 commit comments

Comments
 (0)