-
I am using a third-party SW which has a trial version when the license key is not specified. In my config file, I have the following:
Now if this license env variable does not exist, my code fails with:
Is there a way to allow this to be None or not existing from the config file? I know I can probably set it in the config in case it is missing manually but that is very hacky and I have various alternate tools integrated which does not have this license files requirement and I will have top make this fix for this one tool. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Please give the following a try:
Note that |
Beta Was this translation helpful? Give feedback.
Please give the following a try:
Note that
env
is deprecated in favor ofoc.env
. See the docs on theoc.env
resolver.