Skip to content

Commit 9700afd

Browse files
committed
Disable TRY003
1 parent e8baa54 commit 9700afd

5 files changed

+6
-8
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/create_django_issue.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,7 @@ def main(django_max_version=None) -> None:
301301

302302
if __name__ == "__main__":
303303
if GITHUB_REPO is None:
304-
msg = "No github repo, please set the environment variable GITHUB_REPOSITORY"
305-
raise RuntimeError(msg)
304+
raise RuntimeError("No github repo, please set the environment variable GITHUB_REPOSITORY")
306305
max_version = None
307306
last_arg = sys.argv[-1]
308307
if CURRENT_FILE.name not in last_arg:

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):

scripts/update_changelog.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,7 @@ def update_git_repo(paths: list[Path], release: str) -> None:
162162

163163
if __name__ == "__main__":
164164
if GITHUB_REPO is None:
165-
msg = "No github repo, please set the environment variable GITHUB_REPOSITORY"
166-
raise RuntimeError(msg)
165+
raise RuntimeError("No github repo, please set the environment variable GITHUB_REPOSITORY")
167166
if GIT_BRANCH is None:
168-
msg = "No git branch set, please set the GITHUB_REF_NAME environment variable"
169-
raise RuntimeError(msg)
167+
raise RuntimeError("No git branch set, please set the GITHUB_REF_NAME environment variable")
170168
main()

0 commit comments

Comments
 (0)