Browse Source

Add absolute imports

pull/473/head
Conrrad 6 years ago
committed by Chris
parent
commit
a06e024023
3 changed files with 4 additions and 4 deletions
  1. 2
      gooey/gui/components/menubar.py
  2. 4
      gooey/tests/test_argparse_to_json.py
  3. 2
      gooey/tests/test_formatters.py

2
gooey/gui/components/menubar.py

@ -3,7 +3,7 @@ from functools import partial
import wx
from gui import three_to_four
from gooey.gui import three_to_four
class MenuBar(wx.MenuBar):

4
gooey/tests/test_argparse_to_json.py

@ -1,8 +1,8 @@
import unittest
from argparse import ArgumentParser
from gooey import GooeyParser
from python_bindings import argparse_to_json
from util.functional import getin
from gooey.python_bindings import argparse_to_json
from gooey.util.functional import getin
class TestArgparse(unittest.TestCase):

2
gooey/tests/test_formatters.py

@ -1,7 +1,7 @@
import argparse
import unittest
from gui import formatters
from gooey.gui import formatters
class TestFormatters(unittest.TestCase):

Loading…
Cancel
Save