Skip to content

Commit 7a11b37

Browse files
fix: fix missing CommandRegistrar
1 parent 1007dcb commit 7a11b37

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/specify_cli/presets.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
import shutil
1717
from dataclasses import dataclass
1818
from pathlib import Path
19-
from typing import Optional, Dict, List, Any
19+
from typing import TYPE_CHECKING, Optional, Dict, List, Any
20+
21+
if TYPE_CHECKING:
22+
from .agents import CommandRegistrar
2023
from datetime import datetime, timezone
2124
import re
2225

0 commit comments

Comments
 (0)