Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dmzoneill committed May 8, 2024
1 parent d114d28 commit 5763d8d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions d_fake_seeder/lib/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,15 @@ def remove_torrent(self, filepath):

# Method to get ListStore of torrents for Gtk.TreeView
def get_liststore(self):
logger.debug("Model get_liststore", extra={"class_name": self.__class__.__name__})
logger.debug(
"Model get_liststore", extra={"class_name": self.__class__.__name__}
)
return self.torrent_list_attributes

def get_torrents(self):
logger.debug("Model get_torrents", extra={"class_name": self.__class__.__name__})
logger.debug(
"Model get_torrents", extra={"class_name": self.__class__.__name__}
)
return self.torrent_list

def get_trackers_liststore(self):
Expand Down

0 comments on commit 5763d8d

Please sign in to comment.