You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following methods can inspect config or a node in a config
# Optional fields can be assigned Nonedefis_optional(obj: Any, key: Optional[Union[int, str]] =None) ->bool:
# None fields, well - are None. None fields still have a type (int, dict, etc)defis_none(obj: Any, key: Optional[Union[int, str]] =None) ->bool:
# True if the node is an interpolationdefis_interpolation(node: Node, key: Optional[Union[int, str]] =None) ->bool:
# True if the node is missing ('???').defis_missing(cfg: BaseContainer, key: Union[int, str]) ->bool:
The text was updated successfully, but these errors were encountered:
The following methods can inspect config or a node in a config
The text was updated successfully, but these errors were encountered: