From e84766986fcc2cd65d591502a9ff2d0db89c4b57 Mon Sep 17 00:00:00 2001 From: "D. Gopal Krishna" Date: Fri, 14 Jun 2024 14:39:47 +0530 Subject: [PATCH] feat: Remove check for phenotype in ConnectivityStatementStateService --- backend/composer/services/state_services.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/composer/services/state_services.py b/backend/composer/services/state_services.py index fea0a025..c51fc895 100644 --- a/backend/composer/services/state_services.py +++ b/backend/composer/services/state_services.py @@ -173,7 +173,6 @@ def can_be_reviewed(connectivity_statement): return ( connectivity_statement.origins.exists() and connectivity_statement.destinations.exists() - and connectivity_statement.phenotype is not None and connectivity_statement.provenance_set.count() > 0 )