Skip to content

Commit 0b2165d

Browse files
committed
Fix strange difference between local and CI pylint
1 parent 5b606d6 commit 0b2165d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymodbus/repl/client/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def _(event):
231231
continue # Control-C pressed. Try again.
232232
except EOFError:
233233
break # Control-D pressed.
234-
except Exception as exc: # Handle all other exceptions pylint: disable=broad-except
234+
except Exception as exc: # pylint: disable=broad-except
235235
click.secho(str(exc), fg="red")
236236

237237
click.secho("GoodBye!", fg="blue")

0 commit comments

Comments
 (0)