-
Notifications
You must be signed in to change notification settings - Fork 22
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
add vpn capability properties #658
Conversation
shadeofblue
commented
Sep 15, 2021
- support for list constraints
+ support for list constraints
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, first a disclaimer. I don't have a feeling I understand those "capabilities", "props" etc things really well. If my comments make no sense, then I probably need some explanation what's going on.
Other than that, this looks good, just some minor things.
if sys.version_info > (3, 8): | ||
from typing import Literal | ||
else: | ||
from typing_extensions import Literal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both Final
and Literal
are in typing
since 3.8.
I have no opinion on whether we should always import them from _extensions
or base import on sys.version_info
, but I'm sure we should have them together.
Co-authored-by: johny-b <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🇹🇭