From 65c763ae6643d32f86220926d25ce63f9112841b Mon Sep 17 00:00:00 2001 From: Langenfeld Date: Thu, 22 Aug 2024 16:07:40 +0200 Subject: [PATCH] fix: copy paste comment --- gitea/apiobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea/apiobject.py b/gitea/apiobject.py index dc8107c..de13d86 100644 --- a/gitea/apiobject.py +++ b/gitea/apiobject.py @@ -479,7 +479,7 @@ class Repository(ApiObject): ) def del_topic(self, topic: str): - """Add a topic to the repository""" + """Delete a topic to the repository""" self.gitea.requests_delete( Repository.REPO_TOPIC % (self.owner.username, self.name, topic) )