This seems to be needed

pull/443/head
Wyatt Stanke 9 months ago
parent f859f7372f
commit db79245578
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

16
poetry.lock generated

@ -2410,6 +2410,20 @@ files = [
[package.extras] [package.extras]
doc = ["reno", "sphinx", "tornado (>=4.5)"] doc = ["reno", "sphinx", "tornado (>=4.5)"]
[[package]]
name = "termcolor"
version = "2.4.0"
description = "ANSI color formatting for output in terminal"
optional = false
python-versions = ">=3.8"
files = [
{file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"},
{file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"},
]
[package.extras]
tests = ["pytest", "pytest-cov"]
[[package]] [[package]]
name = "tokenizers" name = "tokenizers"
version = "0.15.2" version = "0.15.2"
@ -2935,4 +2949,4 @@ multidict = ">=4.0"
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = ">=3.9,<4.0" python-versions = ">=3.9,<4.0"
content-hash = "45c00f4a91b9a7da1513e36ae7eaf9a95b22165f4773417049b6c26f839f74a0" content-hash = "0cc534645da532a15be528138953977fc41d565fb53352a5a8710dcd63b531fe"

@ -65,12 +65,13 @@ mypy-protobuf = "^3.0.0"
[tool.poetry.group.test.dependencies] [tool.poetry.group.test.dependencies]
pytest = "^8.1.1" pytest = "^8.1.1"
termcolor = "^2.4.0"
[tool.ruff] [tool.ruff]
line-length = 127 line-length = 127
[tool.ruff.lint] [tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "W"] select = ["E4", "E7", "E9", "F", "W", "E501"]
ignore = [] ignore = []
fixable = ["ALL"] fixable = ["ALL"]
unfixable = [] unfixable = []

Loading…
Cancel
Save