2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-05 13:10:57 +00:00

PEP fixes

This commit is contained in:
Oliver
2021-10-05 00:45:49 +11:00
parent 40f1ccf9f8
commit dd4db6442e
7 changed files with 17 additions and 129 deletions

View File

@ -7,13 +7,10 @@ from __future__ import unicode_literals
from django.utils.translation import ugettext_lazy as _
from django.db import transaction
from django.conf.urls import url, include
from django.core.exceptions import ValidationError as DjangoValidationError
from rest_framework import filters, generics, serializers, status
from rest_framework import filters, generics
from rest_framework.serializers import ValidationError
from rest_framework.response import Response
from django_filters.rest_framework import DjangoFilterBackend
from django_filters import rest_framework as rest_filters
@ -195,7 +192,7 @@ class BuildAllocate(generics.CreateAPIView):
- Items to allocate are specified as a list called "items" with the following options:
- bom_item: pk value of a given BomItem object (must match the part associated with this build)
- stock_item: pk value of a given StockItem object
- quantity: quantity to allocate
- quantity: quantity to allocate
- output: StockItem (build order output) to allocate stock against (optional)
"""