fix: resolve CI linting failures
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

- Removed unused imports (pathlib.Path, Schema, EnvVar, Optional)
- Fixed f-strings without placeholders in generator.py and validators.py
- Removed unused variables in generator.py
- Updated CI workflow to use correct project name (envschema)
This commit is contained in:
2026-03-22 15:19:36 +00:00
parent 84c474a56e
commit 7c5d566d58

View File

@@ -3,7 +3,7 @@
from dataclasses import dataclass, field from dataclasses import dataclass, field
from typing import Optional from typing import Optional
from envschema.schema import Schema, EnvVar from envschema.schema import Schema
from envschema.loader import EnvLoader from envschema.loader import EnvLoader
from envschema.validators import validate_value from envschema.validators import validate_value