-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix nullable reference types warning #199
Labels
Comments
dan-hein
added a commit
that referenced
this issue
Jan 12, 2021
Annotates the PythonVersionInfo class to enable nullable references. This clears the warning and indicates intent to work with nullable references. C# 8.0 added this annotation to allow for fine-grain control on the nullability of references. This annotation also allows for the change to the SafeToLower and SafeExtract methods, that can potentially return null, to return Nullable strings which further enables null-safe checking. See Microsoft's documentation https://docs.microsoft.com/en-us/dotnet/csharp/nullable-references#nullable-annotation-context Resolves #199
Hey @mrbiggred, I believe Nickie did that just to mark the task as Ready for Deployment. The changes attached should fix the issue described. I think that was mainly for the Freshli board. |
@dan-hein @mrbiggred Correct. GitHub automatically closed the issue because of the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When building, the following warning is produced:
This warning should be addressed.
The text was updated successfully, but these errors were encountered: