lchtangen/SampleMind-AI---Beta

Add type hints to config module

Open

#4 aberto em 4 de out. de 2025

Ver no GitHub
 (1 comment) (0 reactions) (0 assignees)Python (2 forks)auto 404
beginnerenhancementgood first issue

Métricas do repositório

Stars
 (1 star)
Métricas de merge de PR
 (Métricas PR pendentes)

Description

Description: Add type hints to all functions and class methods.

File: src/samplemind/config/settings.py

Example:

# Before
def load_config(path):
    return json.load(open(path))

# After
def load_config(path: Path) -> Dict[str, Any]:
    """Load configuration from JSON file."""
    return json.load(open(path))

Difficulty: 🟢 Beginner Time: 1 hour

See docs/GOOD_FIRST_ISSUES.md Issue #4 for details.

Guia do colaborador