Skip to content

Commit

Permalink
create-ticket: fix request
Browse files Browse the repository at this point in the history
  • Loading branch information
DonHaul authored and drjova committed Aug 8, 2024
1 parent bf1b393 commit 4aa691c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import json
import logging

import requests
Expand Down Expand Up @@ -60,6 +59,6 @@ def call_api(self, method: str, endpoint: str, data: dict) -> Response:
_retry_args=self.tenacity_retry_kwargs,
endpoint=endpoint,
headers=self.headers,
data=json.dumps(data),
data=data,
method=method,
)

0 comments on commit 4aa691c

Please sign in to comment.