2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00

Style fixes

This commit is contained in:
Oliver Walters 2017-04-20 22:53:28 +10:00
parent db45e3625f
commit 76b086aab8
7 changed files with 6 additions and 19 deletions

View File

@ -12,8 +12,6 @@ from users.urls import user_urls
admin.site.site_header = "InvenTree Admin" admin.site.site_header = "InvenTree Admin"
apipatterns = [ apipatterns = [
# Stock URLs # Stock URLs

View File

@ -1,6 +1,3 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals # from __future__ import unicode_literals
# from django.contrib import admin
from django.contrib import admin
# Register your models here.

View File

@ -1,6 +1 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models
# Create your models here.

View File

@ -12,4 +12,3 @@ class UserSerializer(serializers.HyperlinkedModelSerializer):
'first_name', 'first_name',
'last_name', 'last_name',
'email',) 'email',)

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals # from __future__ import unicode_literals
from django.test import TestCase # from django.test import TestCase
# Create your tests here.

View File

@ -1,4 +1,4 @@
from django.conf.urls import url, include from django.conf.urls import url
from . import views from . import views

View File

@ -1,4 +1,4 @@
from rest_framework import generics, permissions, response from rest_framework import generics, permissions
from django.contrib.auth.models import User from django.contrib.auth.models import User
from .serializers import UserSerializer from .serializers import UserSerializer