Compare commits

..

No commits in common. "main" and "v0.8.2" have entirely different histories.
main ... v0.8.2

3 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

View File

@ -16,7 +16,7 @@ repos:
- id: check-merge-conflict
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.1
rev: v1.17.0
hooks:
- id: mypy
files: openfeature

View File

@ -1,4 +1,4 @@
import inspect
import asyncio
import time
import uuid
from concurrent.futures import ThreadPoolExecutor
@ -68,7 +68,7 @@ async def test_should_get_flag_value_based_on_method_type(
# Given
# When
method = getattr(no_op_provider_client, get_method)
if inspect.iscoroutinefunction(method):
if asyncio.iscoroutinefunction(method):
flag = await method(flag_key="Key", default_value=default_value)
else:
flag = method(flag_key="Key", default_value=default_value)
@ -126,7 +126,7 @@ async def test_should_get_flag_detail_based_on_method_type(
# Given
# When
method = getattr(no_op_provider_client, get_method)
if inspect.iscoroutinefunction(method):
if asyncio.iscoroutinefunction(method):
flag = await method(flag_key="Key", default_value=default_value)
else:
flag = method(flag_key="Key", default_value=default_value)