Skip to content

Commit 0a9a6ae

Browse files
codewizdaveclaude
andcommitted
fix: resolve ruff errors in type checking code
- Add missing 'Any' import in operations/comparing.py - Fix import order in fp/immutable.py (typing after dataclasses) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 4773496 commit 0a9a6ae

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

excel_toolkit/fp/immutable.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
This module provides a decorator for creating immutable dataclasses.
44
"""
55

6-
from typing import Any
7-
86
from dataclasses import dataclass
7+
from typing import Any
98

109

1110
def immutable(cls: type) -> type:

excel_toolkit/operations/comparing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"""
66

77
from dataclasses import dataclass
8+
from typing import Any
89

910
import pandas as pd
1011

0 commit comments

Comments
 (0)