Remove argument to filter.values()

Given 87161df2, values(from_instance=False) doesn't produce completions
anymore. Therefore, we remove from_instance as an argument.
This commit is contained in:
Sam Roeca
2020-02-07 13:38:52 -05:00
parent 6a9745b42b
commit 9d2083fa08

View File

@@ -400,7 +400,7 @@ class TypedDict(LazyValueWrapper):
def get_key_values(self):
filtered_values = itertools.chain.from_iterable((
f.values(from_instance=True)
f.values()
for f in self._definition_class.get_filters(is_instance=True)
))
return ValueSet({