We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
3.1.0
Given code like this and a project that requires strict type-hinting,
response = self.graph.get_connections( id=postId, connection_name="insights", metric=metric )
I get an "UnknownVariableType" error in Pylance
Type of "response" is partially unknown Type of "response" is "Unknown | Any | dict[str, Unknown | bytes | str] | dict[str, str | Unknown]"
# type: ignore
facebook-sdk will do type hinting out-of-the-box making the workarounds unnecessary.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version of the SDK being used
3.1.0
Actual Behavior
Given code like this and a project that requires strict type-hinting,
I get an "UnknownVariableType" error in Pylance
Current Workarounds
# type: ignore
Desired Behavior
facebook-sdk will do type hinting out-of-the-box making the workarounds unnecessary.
The text was updated successfully, but these errors were encountered: