6 lines
141 B
Python
6 lines
141 B
Python
|
from typing import List
|
||
|
from pydantic import BaseModel, Extra
|
||
|
|
||
|
|
||
|
class Config(BaseModel, extra=Extra.ignore):
|
||
|
elec_check_enable: List = []
|