Closed lemon24 closed 1 month ago
Clean typing stuff. Might be able to use pyupgrade for this.
To do:
from __future__ import annotations
To not do:
import typing as t
import typing_extensions as te
When adding types, the convention is to import types using the form from typing import Union (as opposed to doing just import typing or import typing as t or from typing import *).
from typing import Union
import typing
from typing import *
Clean typing stuff. Might be able to use pyupgrade for this.
To do:
from __future__ import annotations
(and the changes it enables)move TagFilter, {Feed,Entry}Filter options to _storage (todo)no, used by _search as well, just remove todomove reader.core.*Hook to typesTo not do:
import typing as t
,import typing_extensions as te
(Flask does it)?