-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating docstrings, version and removing __*__ from Token.py
- Loading branch information
Showing
2 changed files
with
8 additions
and
11 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 |
---|---|---|
|
@@ -44,16 +44,6 @@ | |
|
||
|
||
|
||
__author__ = "Alexandar P. Mechev" | ||
__copyright__ = "2016 Alexandar P. Mechev" | ||
__credits__ = ["Alexandar P. Mechev", "Natalie Danezi", "J.B.R. Oonk"] | ||
__license__ = "GPL 3.0" | ||
__version__ = "0.2.4" | ||
__maintainer__ = "Alexandar P. Mechev" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
||
|
||
def reset_all_tokens(token_type, picas_creds): | ||
""" Resets all Tokens with the pc authorization | ||
""" | ||
|
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,4 +1,11 @@ | ||
"""GRID_LRT: Grid LOFAR Tools""" | ||
__all__ = ["Application", "Staging", 'sandbox', 'Token', 'couchdb', "couchdb.tests"] | ||
__version__ = "0.3.2" | ||
__version__ = "0.4.0" | ||
__author__ = "Alexandar P. Mechev" | ||
__copyright__ = "2018 Alexandar P. Mechev" | ||
__credits__ = ["Alexandar P. Mechev", "Natalie Danezi", "J.B.R. Oonk"] | ||
__license__ = "GPL 3.0" | ||
__maintainer__ = "Alexandar P. Mechev" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|