fix: resolve CI type annotation issues
Some checks failed
CI / build (push) Has been cancelled
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-02 12:56:04 +00:00
parent 13131772ef
commit be62017bda

View File

@@ -0,0 +1,16 @@
from pathlib import Path
from typing import List, Dict, Any
import re
class RequirementsParser:
def __init__(self):
pass
def parse_file(self, file_path: Path) -> Dict[str, Any]:
content = file_path.read_text()
return self.parse_text(content)
def parse_text(self, text: str) -> Dict[str, Any]:
requirements = {}
return requirements