Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
chongshenng committed Dec 3, 2024
1 parent b812c43 commit d8118b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/py/flwr/cli/run/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ def run(
_run_with_exec_api(app, federation_config, config_overrides, stream)
else:
_run_without_exec_api(app, federation_config, config_overrides, federation)
# pylint: disable=broad-except
except (typer.Exit, SystemExit, Exception) as e: # pylint: disable=unused-variable
# pylint: disable=broad-except, unused-variable
except (typer.Exit, SystemExit, Exception):
_print_json_error()


Expand Down

0 comments on commit d8118b9

Please sign in to comment.