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
I noticed that for code with annotations the annotations are not taken into account when creating the dependency graph.
As an example, for
def do_stuff(config: Config, model: MyModel): model.apply_config(config) return model.eval()
do_stuff is marked as being independent of Config and MyModel, as it does not call Config and MyModel class explicitly in the body.
do_stuff
Config
MyModel
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed that for code with annotations the annotations are not taken into account when creating the dependency graph.
As an example, for
do_stuff
is marked as being independent ofConfig
andMyModel
, as it does not callConfig
andMyModel
class explicitly in the body.The text was updated successfully, but these errors were encountered: