Skip to content
Snippets Groups Projects
Commit 212d467c authored by Podosochnyy Maxim's avatar Podosochnyy Maxim
Browse files

Добавлена возможность установки item'ов

parent ad6435e8
No related branches found
No related tags found
1 merge request!81Добавлена возможность установки item'ов
......@@ -29,6 +29,9 @@ class AbstractItem(metaclass=abc.ABCMeta):
return s
async def all_rules_is_satisfied(self, space_id: str, env_id: str) -> bool:
if not self.rules:
return True
return all(
[
await rule(item=self, space_id=space_id, env_id=env_id)
......
......@@ -14,7 +14,7 @@ def load_requirements():
setup(
name='perxis',
version='1.8.2',
version='1.9.0',
description='Perxis python client',
long_description=long_description,
long_description_content_type='text/markdown',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment