From 37d21c952f3a93afa788228fdd7e1c6d2800fbc6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Apr 2025 18:00:36 +0000 Subject: [PATCH 1/3] Bump pydoclint from 0.5.6 to 0.6.6 Bumps [pydoclint](https://github.com/jsh9/pydoclint) from 0.5.6 to 0.6.6. - [Release notes](https://github.com/jsh9/pydoclint/releases) - [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md) - [Commits](https://github.com/jsh9/pydoclint/compare/0.5.6...0.6.6) --- updated-dependencies: - dependency-name: pydoclint dependency-version: 0.6.6 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Pipfile | 2 +- Pipfile.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Pipfile b/Pipfile index 92ffe70b..181653c5 100644 --- a/Pipfile +++ b/Pipfile @@ -29,7 +29,7 @@ typing_extensions = "==4.8.0" pip = "==25.0.1" pipenv = "==2025.0.1" pydantic = "==2.9.2" -pydoclint = "==0.5.6" +pydoclint = "==0.6.6" pylint = "==3.3.6" pynacl = "==1.5.0" pytest = "==8.3.5" diff --git a/Pipfile.lock b/Pipfile.lock index a396a0be..fec97162 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "8ecf475a1b76c5b6bf2d9ea1f88e563d84df122ed9efd9b3d4b20f7c1ef95707" + "sha256": "b310d30556e7e2ae34214250f22af2b875086fac974f58520b05c653c701ff93" }, "pipfile-spec": 6, "requires": { @@ -1139,12 +1139,12 @@ }, "pydoclint": { "hashes": [ - "sha256:903a33a25504df85b200d3a3f1207688de208890b79730ceb6045978864ba7c9", - "sha256:991d336a8058d482e581f55e0b140c5757ce11d2baa2d2fca94b8f678c03831b" + "sha256:22862a8494d05cdf22574d6533f4c47933c0ae1674b0f8b961d6ef42536eaa69", + "sha256:7ce8ed36f60f9201bf1c1edacb32c55eb051af80fdd7304480c6419ee0ced43c" ], "index": "pypi", - "markers": "python_version >= '3.8'", - "version": "==0.5.6" + "markers": "python_version >= '3.9'", + "version": "==0.6.6" }, "pyflakes": { "hashes": [ From 6a061e0b85e4a254e72a6e553f2ba5a54d284803 Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:02:23 -0400 Subject: [PATCH 2/3] Update http error --- techsupport_bot/core/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/techsupport_bot/core/http.py b/techsupport_bot/core/http.py index 33bc89ba..fac7c908 100644 --- a/techsupport_bot/core/http.py +++ b/techsupport_bot/core/http.py @@ -99,7 +99,7 @@ async def http_call( **kwargs (dict[str, Any]): Used to allow any combination of parameters to the API Raises: - HTTPRateLimit: Raised if the API is currently on cooldown + custom_errors.HTTPRateLimit: Raised if the API is currently on cooldown Returns: munch.Munch: The munch object containing the response from the API From a11eccdb3526248361592c717ebd12a0cb0ba9d5 Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:04:17 -0400 Subject: [PATCH 3/3] Exclude DOC503 --- .flake8 | 2 +- techsupport_bot/core/http.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index 48b31fad..3879e514 100644 --- a/.flake8 +++ b/.flake8 @@ -1,4 +1,4 @@ [flake8] -ignore = DCO010, DCO023, DOC602, DOC603, E203, E501, E712, F401, F403, F821, W503 +ignore = DCO010, DCO023, DOC503, DOC602, DOC603, E203, E501, E712, F401, F403, F821, W503 style = google skip-checking-short-docstrings = False \ No newline at end of file diff --git a/techsupport_bot/core/http.py b/techsupport_bot/core/http.py index fac7c908..33bc89ba 100644 --- a/techsupport_bot/core/http.py +++ b/techsupport_bot/core/http.py @@ -99,7 +99,7 @@ async def http_call( **kwargs (dict[str, Any]): Used to allow any combination of parameters to the API Raises: - custom_errors.HTTPRateLimit: Raised if the API is currently on cooldown + HTTPRateLimit: Raised if the API is currently on cooldown Returns: munch.Munch: The munch object containing the response from the API