Skip to content

Commit 38e5616

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0bdbb6e commit 38e5616

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

main/env_validator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
import logging
66
from pathlib import Path
7-
from typing import Optional
87

98
logger = logging.getLogger(__name__)
109

@@ -42,7 +41,7 @@ def strip_comment(val):
4241
class EnvValidator:
4342
"""Validates environment variable configurations and reports discrepancies."""
4443

45-
def __init__(self, project_root: Optional[str] = None):
44+
def __init__(self, project_root: str | None = None):
4645
"""
4746
Initialize the environment validator.
4847

0 commit comments

Comments
 (0)