From 67418249fe1b9ef2d8fc374c78164cab1316a254 Mon Sep 17 00:00:00 2001 From: Marc Foley Date: Fri, 11 Oct 2024 10:28:25 +0100 Subject: [PATCH] black --- Lib/gftools/gfgithub.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Lib/gftools/gfgithub.py b/Lib/gftools/gfgithub.py index e551199e..433d5c84 100644 --- a/Lib/gftools/gfgithub.py +++ b/Lib/gftools/gfgithub.py @@ -115,19 +115,11 @@ def create_pr( ) def update_pr( - self, - pull_number: int, - title: str = None, - body: str = None, - state: str = None + self, pull_number: int, title: str = None, body: str = None, state: str = None ): return self._post( self.rest_url(f"pulls/{pull_number}"), - { - "title": title, - "body": body, - "state": state - } + {"title": title, "body": body, "state": state}, ) def create_issue_comment(self, issue_number: int, body: str):