Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
00da4ac4 by wurstsalat at 2022-02-21T10:15:33+01:00
View: Fix pipeline

- - - - -


1 changed file:

- gajim/gtk/conversation/view.py


Changes:

=====================================
gajim/gtk/conversation/view.py
=====================================
@@ -467,9 +467,9 @@ def iter_rows(self) -> Generator[BaseRow, None, None]:
         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:



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/00da4ac4f9e60a170c3da56f8c1e31ff7e48946c

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/00da4ac4f9e60a170c3da56f8c1e31ff7e48946c
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to