Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2022-02-21 12:15:33 +0300
committerwurstsalat <mailtrash@posteo.de>2022-02-21 12:15:33 +0300
commit00da4ac4f9e60a170c3da56f8c1e31ff7e48946c (patch)
tree1e572e7b212d8ce9bf1996802daf5ba3152af0c3 /gajim/gtk/conversation/view.py
parent255a5ac56ae9c4af070ac37198b817d3e81a30b3 (diff)
View: Fix pipeline
Diffstat (limited to 'gajim/gtk/conversation/view.py')
-rw-r--r--gajim/gtk/conversation/view.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gajim/gtk/conversation/view.py b/gajim/gtk/conversation/view.py
index 2a7b301f3..263e7185b 100644
--- a/gajim/gtk/conversation/view.py
+++ b/gajim/gtk/conversation/view.py
@@ -467,9 +467,9 @@ class ConversationView(Gtk.ListBox):
for row in cast(list[BaseRow], self.get_children()):
yield row
- def remove_rows_by_type(self, type: str) -> None:
+ def remove_rows_by_type(self, row_type: str) -> None:
for row in self.iter_rows():
- if row.type == type:
+ if row.type == row_type:
row.destroy()
def update_call_rows(self) -> None: