Skip to content

Commit

Permalink
Ignore missing docstrings in test, ignore gtk import error
Browse files Browse the repository at this point in the history
  • Loading branch information
amarghosh committed Mar 12, 2024
1 parent e25f123 commit ffa69e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
""" GTK based renderer """
# pylint: disable=import-error,wrong-import-position
import xml.etree.ElementTree as ET
from gi.repository import Gtk
import gi
from gi.repository import Gtk
gi.require_version("Gtk", "3.0")

class GtkRenderer:
Expand Down
1 change: 1 addition & 0 deletions tests/datasource_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# pylint: disable=missing-module-docstring,missing-class-docstring,missing-function-docstring

from datasource import DataBuffer

Expand Down

0 comments on commit ffa69e1

Please sign in to comment.