szaszm commented on code in PR #1727: URL: https://github.com/apache/nifi-minifi-cpp/pull/1727#discussion_r1553992990
########## extensions/python/pythonprocessors/nifi_python_processors/utils/inline_dependency_installer.py: ########## @@ -0,0 +1,49 @@ +import ast +import sys +import subprocess +import os + + +class Visitor(ast.NodeVisitor): Review Comment: ```suggestion # Extract the list of PIP dependency packages from the visited processor class AST node class Visitor(ast.NodeVisitor): ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
