13 lines
214 B
Python
13 lines
214 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# type: ignore
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from .fixtures import TestingSecrets
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def testing_secrets() -> TestingSecrets:
|
||
|
return TestingSecrets()
|