Ah I see, thanks!
I have a question about the `IsGenuineResult.InternetError` in the example from: https://wyday.com/limelm/help/using-turboactivate-with-python/
isGenuine = (gen_r == IsGenuineResult.Genuine
or gen_r == IsGenuineResult.GenuineFeaturesChanged
# an internet error means the user is activated but
# TurboActivate failed to contact the LimeLM servers
or gen_r == IsGenuineResult.InternetError
)
In this example, if `.Genuine` and `.GenuineFeaturesChanged` are `False` but there is an .`InternetError`, and the user is activated locally. Does this mean the user could turn off their internet resulting in `InternetError` and continue to the use the software?
Many thanks for your help.
For a period of time (the grace period length), after that it’s no longer genuine. The example shows how to best handle the error conditions.
Ah I see, thanks!