Closed japandotorg closed 1 year ago
There is already a remove_dev_env_value
being called inside the __unload funtion.
just wrap that inside the try except block instead of adding another call to remove_dev_env_value
There is already a
remove_dev_env_value
being called inside the __unload funtion. just wrap that inside the try except block instead of adding another call toremove_dev_env_value
totally missed that, thanks!
The unload function already is being wrapped in a try except statement and isn’t the reason why the package fails to load. Please remove the changes to the unload function. The try except statement should be around add_dev_env_value
on line 105 so that the package can be loaded even if adding the dev value fails.
this PR fixes this issue.