Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahdi Gheidi committed Feb 15, 2024
1 parent f737b86 commit 8be1431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kafka_server/coordinator_database/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def delete_broker():
broker_id = data['broker_id']
with concurrent.futures.ThreadPoolExecutor() as executor:
future = executor.submit(broker.delete_broker, broker_id)
result = future.result()
_ = future.result()
return jsonify("Successfully deleted")


Expand Down

0 comments on commit 8be1431

Please sign in to comment.