Skip to content

Commit

Permalink
Disable isort glob.
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Dec 14, 2024
1 parent 49d28d9 commit 42365bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions colour_demosaicing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
- bayer: *Bayer* CFA mosaicing and demosaicing computations.
"""

# isort: skip_file

from __future__ import annotations

import contextlib
Expand Down
2 changes: 2 additions & 0 deletions colour_demosaicing/bayer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# isort: skip_file

from .masks import masks_CFA_Bayer
from .mosaicing import mosaicing_CFA_Bayer
from .demosaicing import * # noqa: F403
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
skip_glob = ["colour_demosaicing/**/__init__.py"]
split_on_trailing_comma = true
use_parentheses = true

Expand Down

0 comments on commit 42365bb

Please sign in to comment.