diff --git a/revup/topic_stack.py b/revup/topic_stack.py index 335d540..6b04295 100644 --- a/revup/topic_stack.py +++ b/revup/topic_stack.py @@ -647,16 +647,6 @@ async def populate_relative_reviews(self, uploader: str, branch_format: str) -> f" {topic.tags[TAG_BRANCH]} for topic {name}" ) - if ( - topic.tags[TAG_UPLOADER] - and topic.relative_topic - and topic.tags[TAG_UPLOADER] != topic.relative_topic.tags[TAG_UPLOADER] - ): - raise RevupUsageException( - f"Topic {name} has uploader '{topic.tags[TAG_UPLOADER]}' while relative topic" - f" {topic.relative_topic.name} has uploader" - f" {topic.relative_topic.tags[TAG_UPLOADER] or '{}'}" - ) topic_uploader = min(topic.tags[TAG_UPLOADER]) if topic.tags[TAG_UPLOADER] else uploader topic_branch_format = ( min(topic.tags[TAG_BRANCH_FORMAT]).lower()