Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
* Fixed "mypy" bugs on "TestStop". #41
Browse files Browse the repository at this point in the history
  • Loading branch information
garciparedes committed Sep 1, 2019
1 parent 4edd278 commit 5de538f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/test_models/test_stops.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import unittest
from copy import deepcopy
from typing import TYPE_CHECKING

import jinete as jit

Expand All @@ -9,8 +10,17 @@
generate_one_route,
)

if TYPE_CHECKING:
from typing import (
List,
)


class TestStop(unittest.TestCase):
vehicle: jit.Vehicle
route: jit.Route
position: jit.Position
stops: List[jit.Stop]

@classmethod
def setUpClass(cls) -> None:
Expand Down

0 comments on commit 5de538f

Please sign in to comment.