Skip to content

Commit 409e497

Browse files
committed
Disable TRY003
1 parent e8baa54 commit 409e497

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ lint.ignore = [
124124
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
125125
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
126126
"SIM102", # sometimes it's better to nest
127+
"TRY003", # Avoid specifying long messages outside the exception class
127128
# Checks for uses of isinstance/issubclass that take a tuple of types for comparison.
128129
# Deactivated because it can make the code slow: https://github.com/astral-sh/ruff/issues/7871
129130
"UP038",

scripts/node_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_version_from_dockerfile() -> str:
3030
_, _, docker_tag = line.partition(":")
3131
version_str, _, _ = docker_tag.partition("-")
3232
return version_str
33-
raise RuntimeError("Could not find version in Dockerfile") # noqa: TRY003
33+
raise RuntimeError("Could not find version in Dockerfile")
3434

3535

3636
def get_version_from_package_json() -> str:

scripts/ruff_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_pyproject_toml_version():
3333
for dependency in data["project"]["dependencies"]:
3434
if dependency.startswith("ruff=="):
3535
return dependency.split("==")[1]
36-
raise RuntimeError("Could not find version in pyproject.toml") # noqa: TRY003
36+
raise RuntimeError("Could not find version in pyproject.toml")
3737

3838

3939
def update_ruff_version(old_version, new_version):

0 commit comments

Comments
 (0)