#!/usr/bin/env bash
#MISE description="Type check with mypy"

set -euo pipefail

echo "🔍 Running type checking..."

uv run --group dev mypy pydantic_settings_manager/

echo "✅ Type checking passed!"
