move resquetime files in
This commit is contained in:
parent
9d7b84264d
commit
ab5fc16df7
4 changed files with 3 additions and 4 deletions
|
@ -5,6 +5,8 @@ from datetime import datetime, timedelta
|
||||||
from typing import NamedTuple, Dict, List, Set, Optional
|
from typing import NamedTuple, Dict, List, Set, Optional
|
||||||
from functools import lru_cache
|
from functools import lru_cache
|
||||||
|
|
||||||
|
from ..common import get_files
|
||||||
|
|
||||||
|
|
||||||
from kython import JSONType, fget, group_by_cmp
|
from kython import JSONType, fget, group_by_cmp
|
||||||
|
|
||||||
|
@ -47,6 +49,7 @@ class Entry(NamedTuple):
|
||||||
return Entry(dt=dt, duration_s=dur, activity=activity)
|
return Entry(dt=dt, duration_s=dur, activity=activity)
|
||||||
|
|
||||||
|
|
||||||
|
# TODO hmm ok, these are going to need to be properly merged?
|
||||||
@lru_cache(1)
|
@lru_cache(1)
|
||||||
def get_rescuetime(latest: Optional[int]=None):
|
def get_rescuetime(latest: Optional[int]=None):
|
||||||
if latest is None:
|
if latest is None:
|
4
run
4
run
|
@ -1,4 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
set -eu
|
|
||||||
cd "$(dirname "$0")"
|
|
||||||
python3 -m rescuetime
|
|
Loading…
Add table
Reference in a new issue