import probs

This commit is contained in:
2019-09-05 09:41:01 +02:00
parent d5ff3c6afd
commit 83db70f2d7
4 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ from datetime import datetime, date, time
from dateutil import parser
from typing import List, Union, Tuple
from types_ import Minutes
from app.types_ import Minutes
def subtract_times(first: time, second: time) -> Minutes:

1
app/config.py Normal file
View File

@@ -0,0 +1 @@
SAMPLE_TIMESHEET_PATH = "tests/timesheet.md"

3
app/types_.py Normal file
View File

@@ -0,0 +1,3 @@
from typing import NewType
Minutes = NewType("Minutes", int)