1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Resolve needless inheritence from object (Python 3)

This commit is contained in:
Sebastian Pipping
2023-06-02 19:21:36 +02:00
parent 59263d6025
commit dedb7ec403
2 changed files with 2 additions and 2 deletions

View File

@@ -71,7 +71,7 @@ Finally, register your class with VCR to use your new serializer.
import vcr
class BogoSerializer(object):
class BogoSerializer:
"""
Must implement serialize() and deserialize() methods
"""