Skip to content

Commit

Permalink
add annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
odashi committed Mar 4, 2023
1 parent 9297014 commit a33228a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/davinci_functions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Package definition."""

from __future__ import annotations

try:
from davinci_functions import _version

Expand Down
2 changes: 2 additions & 0 deletions src/davinci_functions/_judge.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""implementation of `judge` function."""

from __future__ import annotations

import ast
import textwrap

Expand Down
2 changes: 2 additions & 0 deletions src/davinci_functions/_judge_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Tests for davinci_functions._judge."""

from __future__ import annotations

import pytest
import pytest_mock

Expand Down
2 changes: 2 additions & 0 deletions src/davinci_functions/_list.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""implementation of `list` function."""

from __future__ import annotations

import ast
import builtins
import textwrap
Expand Down
2 changes: 2 additions & 0 deletions src/davinci_functions/_list_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Tests for davinci_functions._list."""

from __future__ import annotations

import pytest
import pytest_mock

Expand Down

0 comments on commit a33228a

Please sign in to comment.