From 1319a33ff6f9c33200b483c8fd99e0d6696c87c6 Mon Sep 17 00:00:00 2001 From: "Dr. Torge Valerius" Date: Wed, 13 Oct 2021 19:03:02 +0200 Subject: [PATCH] Fix example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb2068b..ab8d4f7 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ If you need full lease information, you can also query the full lease directly b ``` lease = omapi.lookup_by_lease(mac="24:79:2a:0a:13:c0") -for k, v in res.items(): +for k, v in lease.items(): print("%s: %s" % (k, v)) ```