Reordering imports
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
import pytest
|
||||
from django.urls import reverse
|
||||
from django.core.validators import ValidationError
|
||||
import datetime
|
||||
from documents.api import ep_client, createPadifNotExists
|
||||
|
||||
import pytest
|
||||
from django.core.validators import ValidationError
|
||||
from django.urls import reverse
|
||||
|
||||
from documents.api import createPadifNotExists
|
||||
from documents.api import ep_client
|
||||
|
||||
|
||||
class TestEtherpad:
|
||||
|
||||
@@ -1,12 +1,17 @@
|
||||
# pylint: skip-file
|
||||
import pytest
|
||||
from posts.models import News, Post, Event, FetMeeting
|
||||
from django.urls import reverse
|
||||
from django.core.validators import ValidationError
|
||||
import datetime
|
||||
from urllib.request import URLError
|
||||
import random
|
||||
import string
|
||||
from urllib.request import URLError
|
||||
|
||||
import pytest
|
||||
from django.core.validators import ValidationError
|
||||
from django.urls import reverse
|
||||
|
||||
from posts.models import Event
|
||||
from posts.models import FetMeeting
|
||||
from posts.models import News
|
||||
from posts.models import Post
|
||||
|
||||
|
||||
def get_random_string(size):
|
||||
|
||||
Reference in New Issue
Block a user