Skip to content

Commit c2ef00b

Browse files
committed
Add missing future annotations
1 parent fb27a19 commit c2ef00b

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

debug_toolbar/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
import asyncio
24
import functools
35
import inspect

tests/panels/sqlalchemy/crud.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from sqlalchemy import Column
24
from sqlalchemy.orm import Session
35

tests/testclient.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
import re
24
import typing as t
35
from urllib import parse

0 commit comments

Comments
 (0)