Skip to content
Snippets Groups Projects
Verified Commit 30b923d2 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix errors from pycodestyle.

parent 54746b3c
No related branches found
No related tags found
No related merge requests found
Pipeline #238 canceled
......@@ -16,13 +16,13 @@ class ExtensibleModel(object):
in every app is executed. All code that shall be injected into a model goes there.
:Example:
.. code-block:: python
from datetime import date, timedelta
from biscuit.core.models import Person
@Person.property
def is_cool(self) -> bool:
return True
......
from typing import Dict, Any
from typing import Any
from django import template
......
from importlib import import_module
import pkgutil
from typing import Optional, Sequence
from typing import Sequence
from django.http import HttpRequest
......
import requests
from typing import Callable, Optional
from typing import Optional
from django.contrib.auth.decorators import login_required
from django.http import Http404, HttpRequest, HttpResponse
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment