Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
hwkns committed Dec 28, 2017
1 parent 5a9244b commit 805ac89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notes/admin.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
from notes.models import Note
from django.contrib import admin
from django.contrib.contenttypes import generic
from django.contrib.contenttypes.admin import GenericTabularInline


class NoteInline(generic.GenericTabularInline):
class NoteInline(GenericTabularInline):
model = Note

admin.site.register(Note)

0 comments on commit 805ac89

Please sign in to comment.