Function finish_wrapping_phase
Synopsis
def finish_wrapping_phase(self, name, config_class)
Description
No description yet.
Source
Lines 127-134 in anyfig/fields.py.
def finish_wrapping_phase(self, name, config_class):
# Verifies that attribute is overridden and finishes setup
err_msg = f"Missing required input argument --{name}. See --help for more info"
assert hasattr(self, 'value'), err_msg
self.wrapping_phase = False
return self.value