We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df89e7d commit 6af9f06Copy full SHA for 6af9f06
nbgrader/api.py
@@ -19,7 +19,6 @@
19
from sqlalchemy.ext.declarative import declared_attr
20
from uuid import uuid4
21
from .dbutil import _temp_alembic_ini
22
-from datetime import datetime
23
from typing import List, Any, Optional, Union
24
from .auth import Authenticator
25
@@ -574,7 +573,7 @@ class SubmittedAssignment(Base):
574
573
late_submission_penalty = None
575
576
@property
577
- def duedate(self) -> datetime:
+ def duedate(self) -> datetime.datetime:
578
"""The duedate of this student's assignment, which includes any extension
579
given, if applicable, and which is just the regular assignment duedate
580
otherwise.
0 commit comments