Skip to content

Commit 2b25266

Browse files
committed
Removed unused variable
1 parent 194341b commit 2b25266

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/murfey/cli/create_config.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import re
66
from ast import literal_eval
77
from pathlib import Path
8-
from typing import Any, Callable, Optional, Type, get_type_hints
8+
from typing import Any, Callable, Optional, Type
99

1010
import yaml
1111
from pydantic import ValidationError
@@ -20,9 +20,6 @@
2020
# Create a console object for pretty printing
2121
console = Console()
2222

23-
# Compile types for each key present in MachineConfig
24-
machine_config_types: dict = get_type_hints(MachineConfig)
25-
2623

2724
def prompt(message: str, style: str = "") -> str:
2825
"""

0 commit comments

Comments
 (0)