From dabe6a08aced8559599a30a400358baea82f6148 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 30 Dec 2018 18:20:24 +0100 Subject: [PATCH] reorder --- otpauth/serializer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/otpauth/serializer.py b/otpauth/serializer.py index 0683a98..08805b7 100644 --- a/otpauth/serializer.py +++ b/otpauth/serializer.py @@ -1,7 +1,7 @@ -from rest_framework import serializers, exceptions -from otpauth.models import OTPSeed import pyotp import otpauth +from rest_framework import serializers, exceptions +from otpauth.models import OTPSeed # For accessing / modifying the data class OTPSerializer(serializers.ModelSerializer):