2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-09 07:00:56 +00:00

PEP style fixes

This commit is contained in:
Oliver
2021-10-30 12:57:49 +11:00
parent 8e1d9c281a
commit c2a8cfd183
3 changed files with 1 additions and 87 deletions

View File

@ -6,7 +6,6 @@ Provides a JSON API for the Part app
from __future__ import unicode_literals
from django.conf.urls import url, include
from django.urls import reverse
from django.http import JsonResponse
from django.db.models import Q, F, Count, Min, Max, Avg
from django.db import transaction
@ -43,7 +42,6 @@ from build.models import Build
from . import serializers as part_serializers
from InvenTree.views import TreeSerializer
from InvenTree.helpers import str2bool, isNull
from InvenTree.api import AttachmentMixin