Skip to content

Commit 1765cdd

Browse files
committed
Additional performance inprovements
1 parent bc54cab commit 1765cdd

File tree

110 files changed

+242
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+242
-14
lines changed

flask_inputfilter/Condition/ArrayLengthEqualCondition.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 typing import Any, Dict
24

35
from flask_inputfilter.Condition import BaseCondition

flask_inputfilter/Condition/ArrayLongerThanCondition.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 typing import Any, Dict
24

35
from flask_inputfilter.Condition import BaseCondition

flask_inputfilter/Condition/BaseCondition.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 abc import ABC, abstractmethod
24
from typing import Any, Dict
35

flask_inputfilter/Condition/CustomCondition.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 typing import Any, Callable, Dict
24

35
from flask_inputfilter.Condition import BaseCondition

flask_inputfilter/Condition/EqualCondition.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 typing import Any, Dict
24

35
from flask_inputfilter.Condition import BaseCondition

flask_inputfilter/Condition/ExactlyNOfCondition.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 typing import Any, Dict, List
24

35
from flask_inputfilter.Condition import BaseCondition

flask_inputfilter/Condition/ExactlyNOfMatchesCondition.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 typing import Any, Dict, List
24

35
from flask_inputfilter.Condition import BaseCondition

flask_inputfilter/Condition/ExactlyOneOfCondition.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 typing import Any, Dict, List
24

35
from flask_inputfilter.Condition import BaseCondition

flask_inputfilter/Condition/ExactlyOneOfMatchesCondition.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 typing import Any, Dict, List
24

35
from flask_inputfilter.Condition import BaseCondition

flask_inputfilter/Condition/IntegerBiggerThanCondition.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 typing import Dict
24

35
from flask_inputfilter.Condition import BaseCondition

0 commit comments

Comments
 (0)