mirror of
https://github.com/enpaul/tox-poetry-installer.git
synced 2025-12-19 12:02:34 +00:00
Standardize import structure
Standardize on "import module" format rather than "from module import foo" format Remove _poetry stub module since we directly depend on the poetry package now Fix conflicts between modules and parameters both named 'poetry' Fixes #92
This commit is contained in:
@@ -2,14 +2,14 @@
|
||||
|
||||
from typing import List
|
||||
|
||||
from tox.config.sets import EnvConfigSet
|
||||
from tox.plugin import impl
|
||||
import tox.config.sets
|
||||
import tox.plugin
|
||||
|
||||
|
||||
# pylint: disable=missing-function-docstring
|
||||
@impl
|
||||
@tox.plugin.impl
|
||||
def tox_add_env_config(
|
||||
env_conf: EnvConfigSet,
|
||||
env_conf: tox.config.sets.EnvConfigSet,
|
||||
):
|
||||
env_conf.add_config(
|
||||
"poetry_dep_groups",
|
||||
|
||||
Reference in New Issue
Block a user