Skip to content

Commit eb314e9

Browse files
Bump pylint from 3.3.9 to 4.0.5 (#607)
* Bump pylint from 3.3.9 to 4.0.5 Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.3.9 to 4.0.5. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](pylint-dev/pylint@v3.3.9...v4.0.5) --- updated-dependencies: - dependency-name: pylint dependency-version: 4.0.5 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Make linter happy Ignore the following: sql_metadata/token.py:566:0: C0103: Constant name "EmptyToken" doesn't conform to UPPER_CASE naming style (invalid-name) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: macbre <maciej.brencz@gmail.com>
1 parent 7e0d19b commit eb314e9

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

poetry.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ sqlparse = ">=0.4.1,<0.6.0"
1919
[tool.poetry.dev-dependencies]
2020
black = "^26.3"
2121
coverage = {extras = ["toml"], version = "^7.13"}
22-
pylint = "^3.3.9"
22+
pylint = "^4.0.5"
2323
pytest = "^9.0.2"
2424
pytest-cov = "^7.0.0"
2525
flake8 = "^7.3.0"

sql_metadata/token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,4 +563,4 @@ def find_nearest_token(
563563
return EmptyToken
564564

565565

566-
EmptyToken = SQLToken()
566+
EmptyToken = SQLToken() # pylint: disable=invalid-name

0 commit comments

Comments
 (0)