Github user AviaE commented on a diff in the pull request: https://github.com/apache/incubator-ariatosca/pull/100#discussion_r115141706 --- Diff: aria/modeling/service_template.py --- @@ -2131,13 +2132,15 @@ def resolve(self, model_storage): # moved to. plugins = model_storage.plugin.list() matching_plugins = [] - for plugin in plugins: - # TODO: we need to use a version comparator - if (plugin.name == self.name) and \ - ((self.version is None) or (plugin.package_version >= self.version)): - matching_plugins.append(plugin) + if plugins: + for plugin in plugins: + if (plugin.name == self.name) and \ --- End diff -- I know that wrapping `if` conditions with parenthesis is your thing, but in this case it seems to cause some clutter...
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---