From 83db70f2d78ddcf57c15cd01f7fe048bf35f7dcf Mon Sep 17 00:00:00 2001 From: zevav Date: Thu, 5 Sep 2019 09:41:01 +0200 Subject: [PATCH] import probs --- app/add.py | 2 +- config.py => app/config.py | 0 types_.py => app/types_.py | 0 tests/test_add.py | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename config.py => app/config.py (100%) rename types_.py => app/types_.py (100%) diff --git a/app/add.py b/app/add.py index 994ba4c..44fec93 100644 --- a/app/add.py +++ b/app/add.py @@ -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: diff --git a/config.py b/app/config.py similarity index 100% rename from config.py rename to app/config.py diff --git a/types_.py b/app/types_.py similarity index 100% rename from types_.py rename to app/types_.py diff --git a/tests/test_add.py b/tests/test_add.py index 2e1020f..dd0c087 100644 --- a/tests/test_add.py +++ b/tests/test_add.py @@ -9,7 +9,7 @@ from app.add import ( parse_time, subtract_times, ) -from config import SAMPLE_TIMESHEET_PATH +from app.config import SAMPLE_TIMESHEET_PATH @fixture