Skip to content

Commit 42d996b

Browse files
Apply isort
1 parent c38e51d commit 42d996b

File tree

13 files changed

+12
-12
lines changed

13 files changed

+12
-12
lines changed

static_precompiler/compilers/babel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import os
22
import warnings
33

4-
from . import base
54
from .. import exceptions, utils
5+
from . import base
66

77
__all__ = ("Babel",)
88

static_precompiler/compilers/coffeescript.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

3-
from . import base
43
from .. import exceptions, utils
4+
from . import base
55

66
__all__ = ("CoffeeScript",)
77

static_precompiler/compilers/handlebars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

3-
from . import base
43
from .. import exceptions, utils
4+
from . import base
55

66
__all__ = ("Handlebars",)
77

static_precompiler/compilers/less.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import posixpath
33
import re
44

5-
from . import base
65
from .. import exceptions, url_converter, utils
6+
from . import base
77

88
__all__ = ("LESS",)
99

static_precompiler/compilers/libsass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import sass
55
from django.utils import encoding
66

7-
from . import scss
87
from .. import exceptions, url_converter, utils
8+
from . import scss
99

1010
__all__ = (
1111
"SCSS",

static_precompiler/compilers/livescript.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

3-
from . import base
43
from .. import exceptions, utils
4+
from . import base
55

66
__all__ = ("LiveScript",)
77

static_precompiler/compilers/scss.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import posixpath
33
import re
44

5-
from . import base
65
from .. import exceptions, url_converter, utils
6+
from . import base
77

88
__all__ = (
99
"SCSS",

static_precompiler/compilers/stylus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import posixpath
33
import re
44

5-
from . import base
65
from .. import exceptions, url_converter, utils
6+
from . import base
77

88
__all__ = ("Stylus",)
99

static_precompiler/mtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
from . import settings, caching
3+
from . import caching, settings
44

55

66
def get_mtime_cachekey(filename):

static_precompiler/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import importlib
22
import warnings
3+
from typing import Dict
34

45
import django.apps
56
import django.core.exceptions
6-
from typing import Dict
77

88
from . import exceptions, settings
99
from .compilers import BaseCompiler # noqa

static_precompiler/tests/test_babel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import pytest
66

77
from static_precompiler import compilers, exceptions
8+
89
from .test_coffeescript import clean_javascript
910

1011

static_precompiler/url_converter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
from . import settings, utils
66

7-
87
URL_PATTERN = re.compile(r"url\((.+)\)")
98

109

static_precompiler/watch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import time
2-
32
from typing import List
3+
44
from watchdog import events, observers
55

66
from . import exceptions, registry

0 commit comments

Comments
 (0)