Skip to content

Commit dfcb0e1

Browse files
committed
3.12 ready
1 parent 451e575 commit dfcb0e1

24 files changed

+0
-48
lines changed

preen/checks/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Base classes for the check framework."""
22

3-
from __future__ import annotations
4-
53
from abc import ABC, abstractmethod
64
from dataclasses import dataclass, field
75
from enum import Enum

preen/checks/ci_matrix.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""CI matrix validation check."""
22

3-
from __future__ import annotations
4-
53
import yaml
64
from pathlib import Path
75

preen/checks/citation.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Citation file check."""
22

3-
from __future__ import annotations
4-
53
from pathlib import Path
64

75
from ..syncer import sync_project

preen/checks/codespell.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Codespell spell checking check."""
22

3-
from __future__ import annotations
4-
53
import re
64
import subprocess
75
from pathlib import Path

preen/checks/deps.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Dependencies check using deptry."""
22

3-
from __future__ import annotations
4-
53
import subprocess
64

75
from .base import Check, CheckResult, Issue, Fix, Severity

preen/checks/deptree.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Circular dependency check using a simple Python implementation."""
22

3-
from __future__ import annotations
4-
53
import ast
64
from pathlib import Path
75
from typing import Dict, Set, List

preen/checks/links.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Link validation check."""
22

3-
from __future__ import annotations
4-
53
import re
64
from pathlib import Path
75

preen/checks/pydoclint.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Pydoclint documentation linting check."""
22

3-
from __future__ import annotations
4-
53
import re
64
import subprocess
75
from pathlib import Path

preen/checks/pyright.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Pyright static type checking check."""
22

3-
from __future__ import annotations
4-
53
import json
64
import subprocess
75
from pathlib import Path

preen/checks/ruff.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Ruff linting and formatting check."""
22

3-
from __future__ import annotations
4-
53
import subprocess
64

75
from .base import Check, CheckResult, Issue, Fix, Severity, Impact

0 commit comments

Comments
 (0)