Skip to content

Commit 3c6e5ba

Browse files
Unnecessary Semicolon removed
1 parent 5fc6e53 commit 3c6e5ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leads/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ def get(self, request, *args, **kwargs):
764764
tags=["Company"],description="Company Create",parameters=swagger_params1.organization_params,request=CompanySwaggerSerializer
765765
)
766766
def post(self, request, *args, **kwargs):
767-
request.data['org'] = request.profile.org.id;
767+
request.data['org'] = request.profile.org.id
768768
print(request.data)
769769
company=CompanySerializer(data=request.data)
770770
if Company.objects.filter(**request.data).exists():

0 commit comments

Comments
 (0)