diff --git a/InvenTree/project/models.py b/InvenTree/project/models.py index 9fca272434..a46b641d39 100644 --- a/InvenTree/project/models.py +++ b/InvenTree/project/models.py @@ -40,7 +40,7 @@ class ProjectPart(models.Model): """ A project part associates a single part with a project The quantity of parts required for a single-run of that project is stored. The overage is the number of extra parts that are generally used for a single run. - """ + """ # Overage types OVERAGE_PERCENT = 0 diff --git a/InvenTree/stock/views.py b/InvenTree/stock/views.py index 3f59330313..99d4ea69ac 100644 --- a/InvenTree/stock/views.py +++ b/InvenTree/stock/views.py @@ -9,5 +9,6 @@ def index(request): warehouses = Warehouse.objects.filter(parent=None) return render(request, 'stock/index.html', - {'warehouses': warehouses + { + 'warehouses': warehouses })