Skip to content

Commit

Permalink
Fix type hints (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
arturo-seijas authored Sep 20, 2023
1 parent 3278b92 commit b2fee50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import yaml
from boto3 import client
from botocore.config import Config
from juju.model import Model
from ops.model import ActiveStatus, Application
from pytest import FixtureRequest, fixture
from pytest_operator.plugin import OpsTest
Expand Down Expand Up @@ -58,7 +59,7 @@ def charm_file(request):


@pytest_asyncio.fixture(scope="module", name="model")
async def model_fixture(ops_test: OpsTest) -> ops.model.Model:
async def model_fixture(ops_test: OpsTest) -> Model:
"""Provide current test model."""
assert ops_test.model
MODEL_CONFIG = {"logging-config": "<root>=INFO;unit=DEBUG"}
Expand Down

0 comments on commit b2fee50

Please sign in to comment.