Skip to content

Commit

Permalink
Merge pull request #146
Browse files Browse the repository at this point in the history
fix(yapi): Correct json response handling in parser.py
  • Loading branch information
lihuacai168 authored Nov 27, 2023
2 parents f38b7ad + 9f3c5da commit 8314ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastrunner/utils/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ def get_batch_api_detail(self, api_ids):

def handle_request(response):
try:
res = json.loads(response.body, encoding='utf-8')
res = json.loads(response.body)
api_info.append(res['data'])
except Exception as e:
err_info.add(e)
Expand Down

0 comments on commit 8314ee9

Please sign in to comment.