blob: 1d1309825e950f0cefc2cbb1823f6e074258baf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from __future__ import annotations
from .ini import IniSource
class ToxIni(IniSource):
"""Configuration sourced from a tox.ini file"""
FILENAME = "tox.ini"
__all__ = ("ToxIni",)
|