~jendrikseipp/pogo/github-mirror

« back to all changes in this revision

Viewing changes to pogo/gui/__init__.py

  • Committer: GitHub
  • Author(s): Jendrik Seipp
  • Date: 2017-07-16 15:22:48 UTC
  • mfrom: (695.1.4)
  • Revision ID: git-v1:08a9790f5259c0afc6beb390a10358e104e209c9
Merge pull request #42 from jendrikseipp/pep8

Fix code style (PEP8)

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
def infoMsgBox(parent, header, text=None):
43
43
    __msgBox(parent, Gtk.MessageType.INFO, Gtk.ButtonsType.OK, header, text)
44
44
 
 
45
 
45
46
def errorMsgBox(parent, header, text=None):
46
47
    __msgBox(parent, Gtk.MessageType.ERROR, Gtk.ButtonsType.OK, header, text)