Added python docstrings.

This commit is contained in:
2020-09-19 22:50:07 +02:00
parent eb7fe88d59
commit f5853f7777
18 changed files with 48 additions and 6 deletions

View File

@@ -1,2 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.test import TestCase
from django.contrib.auth.models import User

View File

@@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.db import models
from django.contrib.auth.models import User
from django.core.exceptions import FieldDoesNotExist

View File

@@ -1,4 +1,5 @@
import datetime
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.test import TestCase
from django.db import models

View File

@@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.test import TestCase
from django.db import models
from django.contrib.auth.models import User

View File

@@ -1,4 +1,6 @@
import datetime
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import shutil
from unittest import mock

View File

@@ -1,4 +1,5 @@
import datetime
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.test import TestCase
from django.db import models

View File

@@ -1,5 +1,7 @@
import datetime
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import datetime
from django.test import TestCase
from django.db import models
from django.utils import timezone

View File

@@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.test import TestCase
from lostplaces.models import Taggable, Mapable

View File

@@ -1,4 +1,5 @@
import datetime
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.test import TestCase, RequestFactory, Client
from django.urls import reverse_lazy

View File

@@ -1,4 +1,5 @@
import datetime
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.test import TestCase, Client
from django.urls import reverse