From 84d3a0ed638270d1dda8f4163270f9d14b35ec80 Mon Sep 17 00:00:00 2001 From: Maxime Mouchet Date: Tue, 24 Dec 2019 14:04:44 +0100 Subject: [PATCH] Remove unused imports --- locomotive/cli/formatters.py | 1 - locomotive/diff.py | 2 -- locomotive/models/passenger.py | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/locomotive/cli/formatters.py b/locomotive/cli/formatters.py index c534706..62dca2b 100644 --- a/locomotive/cli/formatters.py +++ b/locomotive/cli/formatters.py @@ -12,7 +12,6 @@ import chevron from ..models import Journey, Proposal, Segment -from ..stores import Stations class Formatter(ABC): diff --git a/locomotive/diff.py b/locomotive/diff.py index f67c6fa..02f1fc3 100644 --- a/locomotive/diff.py +++ b/locomotive/diff.py @@ -2,8 +2,6 @@ from enum import Enum, auto from typing import Dict, List, Optional, Tuple -import attr - from .models import Journey, Segment diff --git a/locomotive/models/passenger.py b/locomotive/models/passenger.py index b52e262..4a41ba9 100644 --- a/locomotive/models/passenger.py +++ b/locomotive/models/passenger.py @@ -1,5 +1,5 @@ import datetime as dt -from typing import List, Optional, Union +from typing import List import attr