Skip to content

Commit

Permalink
fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryo Chijiiwa committed Feb 4, 2016
1 parent fbabe3e commit cf930f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dynamic_rest/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@
import importlib
import pickle

import pylru
from django.utils import six
from django.utils.functional import cached_property
from rest_framework import fields
from rest_framework.exceptions import NotFound, ParseError
from rest_framework.serializers import SerializerMethodField
import pylru

from dynamic_rest.bases import DynamicSerializerBase
from dynamic_rest.conf import settings
from dynamic_rest.meta import is_field_remote


serializer_cache = pylru.lrucache(
settings.SERIALIZER_CACHE_MAX_COUNT
)
Expand Down

0 comments on commit cf930f6

Please sign in to comment.