Skip to content

Commit

Permalink
build(deps): bump aiohttp from 3.10.8 to 3.10.9 (#71)
Browse files Browse the repository at this point in the history
* build(deps): bump aiohttp from 3.10.8 to 3.10.9

Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.10.8 to 3.10.9.
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.10.8...v3.10.9)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* More informative error message

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Guy Khmelnitsky <guykhmel@gmail.com>
  • Loading branch information
dependabot[bot] and GuyKh authored Oct 8, 2024
1 parent 4eafd4e commit 2e2d82b
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 96 deletions.
190 changes: 95 additions & 95 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion ims_envista/ims_envista.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ class IMSEnvista:

def __init__(self, token: UUID | str, session: ClientSession | None = None) -> None:
if not token:
raise ValueError
err_msg = "Missing IMS Token"
raise ValueError(err_msg)

# Custom Logger to the session
trace_config = TraceConfig()
Expand Down

0 comments on commit 2e2d82b

Please sign in to comment.