From 913bb796a55dfcd3e5e0e51c46a06d4f31a9cac7 Mon Sep 17 00:00:00 2001 From: David Trattnig <david@subsquare.at> Date: Wed, 10 Aug 2022 18:42:48 +0200 Subject: [PATCH] docs(docstring): remove args --- src/aura_engine/base/lang.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/aura_engine/base/lang.py b/src/aura_engine/base/lang.py index 87f91d99..5cd5f8cc 100644 --- a/src/aura_engine/base/lang.py +++ b/src/aura_engine/base/lang.py @@ -78,11 +78,7 @@ def private(member): class DotDict(dict): """ - Wrap a Dictionary with `DotDict` to allow property access using the dot.notation. - - Args: - dict (_type_): The dictionary - + Wrap a dictionary with `DotDict()` to allow property access using the dot.notation. """ __getattr__ = dict.get -- GitLab