From 96682ff5bfd0b7c4b0a37ad0d45f7f5078342095 Mon Sep 17 00:00:00 2001 From: Bellanov Apilli Date: Thu, 12 Dec 2024 10:06:32 -0500 Subject: [PATCH] Resolved Linting Errors --- examples/hello_world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello_world.py b/examples/hello_world.py index ca091a0..01c75e7 100644 --- a/examples/hello_world.py +++ b/examples/hello_world.py @@ -20,7 +20,7 @@ def quality_assurance(data): for col in data.columns: if data[col].dtype == 'object': data[col] = data[col].apply(lambda x: str(x) if isinstance(x, dict) else x) - + data = data.drop_duplicates() return data