Skip to content

Commit 7c91d95

Browse files
committed
cleanup
1 parent f41033d commit 7c91d95

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/test-python.yml

+3
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ jobs:
117117
uses: supercharge/mongodb-github-action@1.12.0
118118
with:
119119
mongodb-version: '8.0.0-rc4'
120+
- name: Install dependencies
121+
run: |
122+
just install
120123
- name: Run tests
121124
run: |
122125
just docs-test

pymongo/pyopenssl_context.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def __get_options(self) -> None:
277277
# Calling set_options adds the option to the existing bitmask and
278278
# returns the new bitmask.
279279
# https://www.pyopenssl.org/en/stable/api/ssl.html#OpenSSL.SSL.Context.set_options
280-
return self._ctx.set_options(0)
280+
self._ctx.set_options(0)
281281

282282
def __set_options(self, value: int) -> None:
283283
# Explicitly convert to int, since newer CPython versions

0 commit comments

Comments
 (0)