From 52beeb0d73d855507c63ecf9c2b81afd296051e9 Mon Sep 17 00:00:00 2001 From: "Daniel G. Taylor" Date: Mon, 28 Oct 2019 20:44:57 -0700 Subject: [PATCH] Fix typo in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed29198..35bf42a 100644 --- a/README.md +++ b/README.md @@ -281,7 +281,7 @@ You can do stuff like: ```py >>> t = Test().from_dict({"maybe": True, "ts": "2019-01-01T12:00:00Z", "duration": "1.200s"}) >>> t -st(maybe=True, ts=datetime.datetime(2019, 1, 1, 12, 0, tzinfo=datetime.timezone.utc), duration=datetime.timedelta(seconds=1, microseconds=200000)) +Test(maybe=True, ts=datetime.datetime(2019, 1, 1, 12, 0, tzinfo=datetime.timezone.utc), duration=datetime.timedelta(seconds=1, microseconds=200000)) >>> t.ts - t.duration datetime.datetime(2019, 1, 1, 11, 59, 58, 800000, tzinfo=datetime.timezone.utc)