Skip to content

Commit

Permalink
Add missing future annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
mongkok committed Feb 13, 2024
1 parent fb27a19 commit c2ef00b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions debug_toolbar/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import asyncio
import functools
import inspect
Expand Down
2 changes: 2 additions & 0 deletions tests/panels/sqlalchemy/crud.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from sqlalchemy import Column
from sqlalchemy.orm import Session

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

import re
import typing as t
from urllib import parse
Expand Down

0 comments on commit c2ef00b

Please sign in to comment.