Skip to content

Commit a355d9d

Browse files
committed
fix(lint): fix ruff import sorting and type annotation errors in config.py
1 parent 553df68 commit a355d9d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/trueentropy/config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
from dataclasses import dataclass
3030

31-
3231
# -----------------------------------------------------------------------------
3332
# Source Metadata
3433
# -----------------------------------------------------------------------------
@@ -166,7 +165,7 @@ def get_source_info(self, source: str) -> dict[str, bool]:
166165
"requires_network": source in NETWORK_SOURCES,
167166
}
168167

169-
def copy(self, **changes) -> "TrueEntropyConfig":
168+
def copy(self, **changes) -> TrueEntropyConfig:
170169
"""
171170
Create a copy of this config with optional changes.
172171

0 commit comments

Comments
 (0)