-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Document all functions in app, settings modules
- Loading branch information
Showing
3 changed files
with
53 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
__version__ = '2.5.0' | ||
__version_info__ = tuple([ int(num) for num in __version__.split('.')]) | ||
|
||
# For tests to run successfully | ||
import sys | ||
from os.path import abspath, dirname, join | ||
sys.path.append(abspath(join(dirname(__file__), '.'))) | ||
|
||
from .app import App | ||
|
||
from .app import App |
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,3 +1,10 @@ | ||
""" | ||
Entry point for the main app. | ||
To run the app, do: | ||
>>> python biscuit | ||
""" | ||
|
||
import sys | ||
from app import App | ||
|
||
|
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