-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a09eb7
commit 548a4b7
Showing
14 changed files
with
323 additions
and
160 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,23 +1,22 @@ | ||
from .load import BUGWARRIORRC, get_config_path, load_config | ||
from .schema import (ConfigList, | ||
ExpandedPath, | ||
NoSchemeUrl, | ||
""" | ||
Config API | ||
---------- | ||
""" | ||
from .data import BugwarriorData | ||
from .load import BUGWARRIORRC, get_config_path, load_config # noqa: F401 | ||
from .schema import (ConfigList, # noqa: F401 | ||
ExpandedPath, # noqa: F401 | ||
LoggingPath, # noqa: F401 | ||
MainSectionConfig, | ||
NoSchemeUrl, # noqa: F401 | ||
ServiceConfig, | ||
StrippedTrailingSlashUrl) | ||
from .secrets import get_keyring, get_service_password | ||
StrippedTrailingSlashUrl, # noqa: F401 | ||
TaskrcPath) # noqa: F401 | ||
from .secrets import get_keyring # noqa: F401 | ||
|
||
# NOTE: __all__ determines the stable, public API. | ||
__all__ = [ | ||
# load | ||
'BUGWARRIORRC', | ||
'get_config_path', | ||
'load_config', | ||
# schema | ||
'ConfigList', | ||
'ExpandedPath', | ||
'NoSchemeUrl', | ||
'ServiceConfig', | ||
'StrippedTrailingSlashUrl', | ||
# secrets | ||
'get_keyring', | ||
'get_service_password', | ||
BugwarriorData.__name__, | ||
MainSectionConfig.__name__, | ||
ServiceConfig.__name__, | ||
] |
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
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,8 +1,6 @@ | ||
Getting bugwarrior | ||
================== | ||
|
||
.. _requirements: | ||
|
||
Requirements | ||
------------ | ||
|
||
|
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,17 @@ | ||
Python API | ||
========== | ||
|
||
The interfaces documented here are considered stable. All other interfaces | ||
should be considered private to bugwarrior and are subject to change without | ||
warning, release notes, or semantic version bumping. | ||
|
||
.. automodule:: bugwarrior.services | ||
:members: | ||
:exclude-members: __init__ | ||
:member-order: bysource | ||
|
||
.. automodule:: bugwarrior.config | ||
:members: | ||
:exclude-members: __init__,compute_templates | ||
:imported-members: | ||
:member-order: bysource |
File renamed without changes.
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
Oops, something went wrong.