From 1ed1087a1acf3985f4cc5e88d4c891826ec754c9 Mon Sep 17 00:00:00 2001 From: Martin Date: Fri, 13 Oct 2017 18:23:08 +0200 Subject: [PATCH] fix missing over.types.ndict.keys --- over/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/over/types.py b/over/types.py index 19c18d9..a364726 100644 --- a/over/types.py +++ b/over/types.py @@ -20,7 +20,7 @@ class ndict: {"alpha": 1, "beta": 42} """ - __methods__ = ["values", "items"] + __methods__ = ["values", "items", "keys"] def __init__(self, *args, **kwargs): object.__setattr__(self, "d", OrderedDict(*args, **kwargs))