diff --git a/src/secret_handler.py b/src/secret_handler.py index 921f45c..724a972 100644 --- a/src/secret_handler.py +++ b/src/secret_handler.py @@ -1,3 +1,3 @@ def return_credentials(path: str)->str: with open (path) as file: - return file.read() \ No newline at end of file + return file.read().strip() \ No newline at end of file