Skip to content

Commit

Permalink
Add missing required annotation to enable postponed evaluation of typ…
Browse files Browse the repository at this point in the history
…e annotations on a per-module basis
  • Loading branch information
homeworkprod committed Oct 3, 2019
1 parent 084207a commit a96ece9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions byceps/blueprints/board/models.py
Expand Up @@ -6,6 +6,7 @@
:License: Modified BSD, see LICENSE for details.
"""

from __future__ import annotations
from typing import Optional, Set

from attr import attrs
Expand Down
Expand Up @@ -6,6 +6,7 @@
:License: Modified BSD, see LICENSE for details.
"""

from __future__ import annotations
from enum import Enum
from typing import Optional, Set, Union

Expand Down
1 change: 1 addition & 0 deletions byceps/services/orga_presence/transfer/models.py
Expand Up @@ -6,6 +6,7 @@
:License: Modified BSD, see LICENSE for details.
"""

from __future__ import annotations
from datetime import datetime
from enum import Enum

Expand Down
1 change: 1 addition & 0 deletions byceps/services/snippet/transfer/models.py
Expand Up @@ -6,6 +6,7 @@
:License: Modified BSD, see LICENSE for details.
"""

from __future__ import annotations
from enum import Enum
from typing import NewType
from uuid import UUID
Expand Down

0 comments on commit a96ece9

Please sign in to comment.