Skip to content

Commit

Permalink
Style(wx): Fix flake8 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Dec 29, 2023
1 parent c48fbfd commit 782cdc2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions m_librarian/wx/Application.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8

import wx, wx.adv
import wx, wx.adv # noqa: E401 multiple imports on one line
from ..__version__ import __version__
from .session_config import get_session_config

Expand Down Expand Up @@ -44,7 +44,8 @@ def OnAbout(self, event):
aboutInfo.SetDescription(
u'Библиотекарь для библиотек LibRusEc/Flibusta')
aboutInfo.AddDeveloper(u'Олег Бройтман')
aboutInfo.SetWebSite(u'https://phdru.name/Software/Python/m_librarian/')
aboutInfo.SetWebSite(
u'https://phdru.name/Software/Python/m_librarian/')
aboutInfo.SetCopyright(u'(C) 2023 Олег Бройтман')
aboutInfo.SetLicense(u'GPL')
wx.adv.AboutBox(aboutInfo)
Expand All @@ -58,6 +59,7 @@ def OnSize(self, event):
session_config.save()
event.Skip() # Call other handlers


class Application(wx.App):

def OnInit(self):
Expand Down

0 comments on commit 782cdc2

Please sign in to comment.