Skip to content

Commit

Permalink
PAN-2339: Fixing lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekv committed Nov 26, 2024
1 parent b57324a commit 47c700e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pantos/servicenode/restapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def post(self) -> flask.Response:
_logger.info('new transfer request', extra=arguments)
task_id = TransferInteractor().initiate_transfer(
initiate_transfer_request)
response = _TransferResponseSchema().dump({'task_id': task_id})
# response = _TransferResponseSchema().dump({'task_id': task_id})
except marshmallow.ValidationError as error:
not_acceptable(error.messages)
except SenderNonceNotUniqueError as error:
Expand Down

0 comments on commit 47c700e

Please sign in to comment.