szaszm commented on code in PR #2043:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2043#discussion_r2405526249


##########
extensions/python/pythonprocessors/nifi_python_processors/utils/dependency_installer.py:
##########
@@ -41,14 +41,21 @@ def extract_dependencies(file_path):
     return visitor.dependencies
 
 
+def has_progress_bar() -> bool:
+    return sys.version_info[0] == 3 and sys.version_info[1] >= 9

Review Comment:
   ```suggestion
       return sys.version_info.major > 3 or (sys.version_info.major == 3 and 
sys.version_info.minor >= 9)
   ```



-- 
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]

Reply via email to