-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dependency self-referencing error
- Loading branch information
1 parent
541356d
commit 4ed762e
Showing
6 changed files
with
16 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
"""This module is responsible for providing a high-level interface for elements | ||
of Curses UI and general user interaction with the app, | ||
""" | ||
from oresat_tpane.pane import Pane, VSplit, HSplit, TextFill | ||
from oresat_tpane.datagrid import DataGrid | ||
from urwid import MainLoop, ExitMainLoop | ||
|
||
MAJOR = 0 | ||
MINOR = 0 | ||
PATCH = 1 | ||
PATCH = 2 | ||
|
||
LIB_NAME = 'oresat-tpane' | ||
LIB_DESCRIPTION = 'This module is responsible for providing a high-level' \ | ||
|
@@ -24,13 +21,3 @@ | |
|
||
MAINTAINER_NAME = 'Portland State Aerospace Society' | ||
MAINTAINER_EMAIL = '[email protected]' | ||
|
||
__all__ = [ | ||
"Pane", | ||
"VSplit", | ||
"HSplit", | ||
"TextFill", | ||
"MainLoop", | ||
"DataGrid", | ||
"ExitMainLoop", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from unittest import TestCase | ||
|
||
class HelloWorld(TestCase): | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def test_hello_world(self): | ||
self.assertTrue(True) |