Skip to content

Commit cdd0e0e

Browse files
committed
refactor(artlayer): remove unused import of LayerKind enumeration
Signed-off-by: longhao <[email protected]>
1 parent 225d2b5 commit cdd0e0e

File tree

2 files changed

+30
-37
lines changed

2 files changed

+30
-37
lines changed

.flake8

Lines changed: 30 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,30 @@
1-
[flake8]
2-
ignore = BLK100
3-
4-
# flake8-quotes:
5-
# Use double quotes as our default to comply with black, we like it and
6-
# don't want to use single quotes anymore.
7-
# We would love to configure this via our pyproject.toml but flake8-3.8 does
8-
# not support it yet.
9-
inline-quotes = double
10-
multiline-quotes = double
11-
docstring-quotes = double
12-
avoid-escape = True
13-
14-
# flake8-docstrings
15-
# Use the Google Python Styleguide Docstring format.
16-
docstring-convention=google
17-
18-
exclude =
19-
# No need to traverse our git directory
20-
.git,
21-
# There's no value in checking cache directories
22-
__pycache__,
23-
# The conf file is mostly autogenerated, ignore it
24-
docs/source/conf.py,
25-
# The old directory contains Flake8 2.0
26-
old,
27-
# This contains our built documentation
28-
build,
29-
# This contains builds of flake8 that we don't want to check
30-
dist,
31-
venv,
32-
docs
33-
examples
34-
test
35-
36-
max-line-length = 120
1+
[flake8]
2+
ignore = BLK100
3+
4+
# flake8-quotes:
5+
# Use double quotes as our default to comply with black, we like it and
6+
# don't want to use single quotes anymore.
7+
# We would love to configure this via our pyproject.toml but flake8-3.8 does
8+
# not support it yet.
9+
inline-quotes = double
10+
multiline-quotes = double
11+
docstring-quotes = double
12+
avoid-escape = True
13+
14+
# flake8-docstrings
15+
# Use the Google Python Styleguide Docstring format.
16+
docstring-convention = google
17+
18+
exclude =
19+
.git,
20+
__pycache__,
21+
docs/source/conf.py,
22+
old,
23+
build,
24+
dist,
25+
venv,
26+
docs,
27+
examples,
28+
test
29+
30+
max-line-length = 120

photoshop/api/_artlayer.py

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

44
# Import local modules
55
from photoshop.api._core import Photoshop
6-
from photoshop.api.enumerations import LayerKind
76
from photoshop.api.enumerations import RasterizeType
87
from photoshop.api.text_item import TextItem
98

0 commit comments

Comments
 (0)