Fixes the ruff autoup double import

This commit is contained in:
Trenton H
2026-03-03 19:38:02 -08:00
parent 81b99fb4fc
commit 56bb68ee3d

View File

@@ -5,11 +5,7 @@ from abc import abstractmethod
from collections.abc import Iterator
from dataclasses import dataclass
from types import TracebackType
try:
from typing import Self
except ImportError:
from typing import Self
from typing import Self
import dateparser