Remove unnecessary object class derive in docs

This commit is contained in:
johnthagen 2020-05-13 15:40:41 -04:00 committed by GitHub
parent 8bb9a37f4b
commit 59917d3724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ Let's start by creating a simple object we can use for example purposes:
from datetime import datetime
class Comment(object):
class Comment:
def __init__(self, email, content, created=None):
self.email = email
self.content = content