Remove unnecessary type hint

This commit is contained in:
richard-dds
2018-07-30 15:40:37 -04:00
committed by dandds
parent d207b259cf
commit 206b7f7b2b

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)