Remove unnecessary type hint

This commit is contained in:
richard-dds 2018-07-30 15:40:37 -04:00
parent d23975ad02
commit 4742957f6d

View File

@ -6,7 +6,7 @@ from atst.domain.exceptions import NotFoundError, AlreadyExistsError
@pytest.fixture()
def users_repo(db) -> Users:
def users_repo(db):
return Users(db)