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
Describe the bug When I test a python function with a keyword argument, there is a break in the data flow
To Reproduce py code like:
from typing import Optional def func1(path: str): dataset_module = '123' dataset_name = path #get_dataset_builder_class(dataset_module, dataset_name) get_dataset_builder_class(dataset_module, dataset_name=dataset_name) def get_dataset_builder_class( dataset_module: Optional[str], dataset_name: Optional[str] = None ): print(dataset_module) print(dataset_name) func1("yooho")
def source = cpg.literal(".*yooho.*") def sink = cpg.call("print") sink.reachableByFlows(source).p
Expected behavior While I use comment code which Non-Keyword Arguments get_dataset_builder_class(dataset_module, dataset_name), it looks like right.
get_dataset_builder_class(dataset_module, dataset_name)
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When I test a python function with a keyword argument, there is a break in the data flow
To Reproduce
py code like:
Expected behavior
While I use comment code which Non-Keyword Arguments
get_dataset_builder_class(dataset_module, dataset_name)
, it looks like right.Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: