Skip to content

Commit

Permalink
Merge pull request #10 from LecrisUT/future_annotations
Browse files Browse the repository at this point in the history
Add `__future__.annotations`
  • Loading branch information
jaraco authored Sep 17, 2024
2 parents 4dded77 + 2256e90 commit 5df2b8c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions jaraco/test/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import sys


Expand Down
2 changes: 2 additions & 0 deletions jaraco/test/cpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<function temp_dir at ...>
"""

from __future__ import annotations

import importlib
import types

Expand Down
2 changes: 2 additions & 0 deletions jaraco/test/http.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import urllib.request

import pytest
Expand Down
1 change: 1 addition & 0 deletions newsfragments/10.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added `__future__.annotations`.
2 changes: 2 additions & 0 deletions tests/test_http.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import urllib.request

import pytest
Expand Down

0 comments on commit 5df2b8c

Please sign in to comment.