updated Metadata
This commit is contained in:
parent
fe714bb385
commit
0131bbfc71
1 changed files with 7 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
# <bitbar.desc>Greps and formats data from timewarrior.</bitbar.desc>
|
# <bitbar.desc>Greps and formats data from timewarrior.</bitbar.desc>
|
||||||
# <bitbar.image></bitbar.image>
|
# <bitbar.image></bitbar.image>
|
||||||
# <bitbar.dependencies>python,timew</bitbar.dependencies>
|
# <bitbar.dependencies>python,timew</bitbar.dependencies>
|
||||||
# <bitbar.abouturl>https://github.com/schtobia/argos-timewarrior/blob/master/timewarrior.py</bitbar.abouturl>
|
# <bitbar.abouturl>https://gitlab.com/schtobia/argos-timewarrior/blob/master/timewarrior.py</bitbar.abouturl>
|
||||||
|
|
||||||
import functools
|
import functools
|
||||||
import locale
|
import locale
|
||||||
|
@ -17,6 +17,12 @@ from datetime import datetime, timedelta
|
||||||
|
|
||||||
from timew import TimeWarrior # type: ignore
|
from timew import TimeWarrior # type: ignore
|
||||||
|
|
||||||
|
__author__ = "Tobias Schmidl"
|
||||||
|
__copyright__ = "Copyright 2021, Tobias Schmidl"
|
||||||
|
__license__ = "MIT"
|
||||||
|
__version__ = "1.0"
|
||||||
|
__maintainer__ = "Tobias Schmidl"
|
||||||
|
|
||||||
TW = TimeWarrior()
|
TW = TimeWarrior()
|
||||||
TIMEFORMATTER = '%Y%m%dT%H%M%S%z'
|
TIMEFORMATTER = '%Y%m%dT%H%M%S%z'
|
||||||
locale.setlocale(locale.LC_ALL, '')
|
locale.setlocale(locale.LC_ALL, '')
|
||||||
|
|
Loading…
Reference in a new issue