Skip to content

Commit

Permalink
resolved pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashutosh619-sudo committed Oct 11, 2024
1 parent 9818d24 commit 0da73f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fyle_xero_api/logging_middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, get_response):
self.get_response = get_response

def __call__(self, request):
if request.method in ['POST', 'PUT'] :
if request.method in ['POST', 'PUT']:
try:
body_unicode = request.body.decode('utf-8')
request_body = json.loads(body_unicode)
Expand Down

0 comments on commit 0da73f3

Please sign in to comment.