From 93ade6e94c06fd6da097abd4724a9d995efeac0c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 13:05:14 -0500 Subject: [PATCH] Auto-format code using Clang-Format (#246) Co-authored-by: GitHub Actions --- src/acom_music_box/examples/examples.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/acom_music_box/examples/examples.py b/src/acom_music_box/examples/examples.py index 792ec325..e4e0903b 100644 --- a/src/acom_music_box/examples/examples.py +++ b/src/acom_music_box/examples/examples.py @@ -58,10 +58,10 @@ def __getattr__(self, item): if hasattr(self, item): return getattr(self, item) raise AttributeError(f"'{self.__class__.__name__}' object has no attribute '{item}'") - + def __getitem__(self, item): return self.get_all()[item] - + def __repr__(self): return f'Eamples: {self.get_all()}'