Skip to content

Commit

Permalink
fix tuple include
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasberent committed Nov 20, 2024
1 parent eca979d commit cf87d42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ isort.required-imports = ["from __future__ import annotations"]
"E402", # Allow imports to appear anywhere in Jupyter notebooks
"I002", # Allow missing `from __future__ import annotations` import
]
"scripts/**" = ["T201"]
"scripts/**" = ["T201","PTH", "FURB", "PERF"]

[tool.ruff.lint.pydocstyle]
convention = "google"
Expand Down
2 changes: 1 addition & 1 deletion test/python/cc_decoder/test_dem_to_matrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Tuple

import numpy as np
import pytest
Expand Down

0 comments on commit cf87d42

Please sign in to comment.