diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2022-01-30 11:29:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-30 16:29:24 +0000 |
| commit | 02783d22972f1734e0728b4891f4e52e48913b0d (patch) | |
| tree | 93e14d02f3091b279c244e857ec00f0105975d1c /tests/hazmat/bindings | |
| parent | 16da40107e38df3c5b4c1d83e5ea96ed4a09fa36 (diff) | |
| download | cryptography-02783d22972f1734e0728b4891f4e52e48913b0d.tar.gz | |
Remove explicit subclassing of object now that all classes are new-style (#6830)
As someone who first with Python in 2.4 or so, this habit is going to be hard to break.
Diffstat (limited to 'tests/hazmat/bindings')
| -rw-r--r-- | tests/hazmat/bindings/test_openssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py index 129928ac0..a2ddd3e73 100644 --- a/tests/hazmat/bindings/test_openssl.py +++ b/tests/hazmat/bindings/test_openssl.py @@ -14,7 +14,7 @@ from cryptography.hazmat.bindings.openssl.binding import ( ) -class TestOpenSSL(object): +class TestOpenSSL: def test_binding_loads(self): binding = Binding() assert binding |
