From a8bc9b784efde978a5ca2904cb8cc61c51df4e2c Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Mon, 10 Mar 2025 09:54:18 +0100 Subject: [PATCH] [FIX] runbot: linting --- runbot/models/branch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/models/branch.py b/runbot/models/branch.py index 6aea3c3f..b5aeeedd 100644 --- a/runbot/models/branch.py +++ b/runbot/models/branch.py @@ -32,7 +32,7 @@ class Branch(models.Model): pull_head_name = fields.Char(string='PR HEAD name', readonly=True, store=True) pull_head_remote_id = fields.Many2one('runbot.remote', 'Pull head repository', store=True, index=True) - target_branch_name = fields.Char( string='PR target branch', store=True) + target_branch_name = fields.Char(string='PR target branch', store=True) reviewers = fields.Char('Reviewers') reflog_ids = fields.One2many('runbot.ref.log', 'branch_id')