Skip to content

Commit a33228a

Browse files
author
odashi
committed
add annotation
1 parent 9297014 commit a33228a

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

src/davinci_functions/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Package definition."""
22

3+
from __future__ import annotations
4+
35
try:
46
from davinci_functions import _version
57

src/davinci_functions/_judge.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""implementation of `judge` function."""
22

3+
from __future__ import annotations
4+
35
import ast
46
import textwrap
57

src/davinci_functions/_judge_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Tests for davinci_functions._judge."""
22

3+
from __future__ import annotations
4+
35
import pytest
46
import pytest_mock
57

src/davinci_functions/_list.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""implementation of `list` function."""
22

3+
from __future__ import annotations
4+
35
import ast
46
import builtins
57
import textwrap

src/davinci_functions/_list_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Tests for davinci_functions._list."""
22

3+
from __future__ import annotations
4+
35
import pytest
46
import pytest_mock
57

0 commit comments

Comments
 (0)