Skip to content

Commit 42365bb

Browse files
committed
Disable isort glob.
1 parent 49d28d9 commit 42365bb

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

colour_demosaicing/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
- bayer: *Bayer* CFA mosaicing and demosaicing computations.
1010
"""
1111

12+
# isort: skip_file
13+
1214
from __future__ import annotations
1315

1416
import contextlib

colour_demosaicing/bayer/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# isort: skip_file
2+
13
from .masks import masks_CFA_Bayer
24
from .mosaicing import mosaicing_CFA_Bayer
35
from .demosaicing import * # noqa: F403

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ force_grid_wrap = 0
115115
include_trailing_comma = true
116116
line_length = 88
117117
multi_line_output = 3
118-
skip_glob = ["colour_demosaicing/**/__init__.py"]
119118
split_on_trailing_comma = true
120119
use_parentheses = true
121120

0 commit comments

Comments
 (0)