Skip to content

Commit 759ffd7

Browse files
author
Socratic Developer
committed
chore: Remove all remaining monolith import references
1 parent 0d7ed1f commit 759ffd7

3 files changed

Lines changed: 0 additions & 4 deletions

File tree

src/socratic_docs/artifact_saver.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ def save_artifact(
133133
# Validate content if it's supposed to be code
134134
actual_artifact_type = artifact_type
135135
if artifact_type == "code":
136-
from socratic_system.utils.extractors.registry import LanguageExtractorRegistry
137136

138137
# Get Python extractor from registry
139138
extractor = LanguageExtractorRegistry.get_extractor("python")

src/socratic_docs/extractors/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
- ExtractionResult: Result of code extraction
1212
1313
Usage:
14-
from socratic_system.utils.extractors.registry import LanguageExtractorRegistry
1514
1615
# Get extractor for a language
1716
extractor = LanguageExtractorRegistry.get_extractor("python")

src/socratic_docs/multi_file_splitter.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ def _split_python(self) -> Dict[str, str]:
5353
logger.error(f"Syntax error splitting code: {e}")
5454

5555
# Check if the code appears to be in markdown format
56-
from socratic_system.utils.extractors.registry import LanguageExtractorRegistry
5756

5857
# Get Python extractor from registry
5958
extractor = LanguageExtractorRegistry.get_extractor("python")
@@ -371,7 +370,6 @@ def create_structure(
371370
Returns:
372371
Complete file structure with paths and contents
373372
"""
374-
from socratic_system.utils.project_templates import ProjectTemplateGenerator
375373

376374
if dependencies is None:
377375
dependencies = []

0 commit comments

Comments
 (0)