Update paramaeters like:
- icp_register_first
- icp_registration_mode
- etc.
to be dynamically updateable by using:
focusr.icp_register_first = True
And the same for retrieving information:
print(focusr.icp_register_first)
but use proper @property instead of directly accessing that information from the object.
pyfocusr/pyfocusr/focusr.py
Line 15 in 9cd8669
Update paramaeters like:
to be dynamically updateable by using:
focusr.icp_register_first = TrueAnd the same for retrieving information:
print(focusr.icp_register_first)but use proper
@propertyinstead of directly accessing that information from the object.