Skip to content

Commit

Permalink
pylint resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashutosh619-sudo committed Oct 10, 2024
1 parent d4b833a commit 443541c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fyle_qbo_api/logging_middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,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 443541c

Please sign in to comment.