From c524eb6f9e73314019fe13265e0069c133da6ca6 Mon Sep 17 00:00:00 2001 From: jad2121 Date: Thu, 7 Mar 2024 19:41:50 -0500 Subject: [PATCH] fixed more --- installer/client/cli/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/client/cli/utils.py b/installer/client/cli/utils.py index 41a3e3f..229ccf7 100644 --- a/installer/client/cli/utils.py +++ b/installer/client/cli/utils.py @@ -651,7 +651,7 @@ class Setup: else: print("No shell configuration file found.") - def remove_duplicates(filename): + def remove_duplicates(self, filename): unique_lines = set() with open(filename, 'r') as file: lines = file.readlines()