From 15026d88f89cac6ba97aba95d5a460c387930ebf Mon Sep 17 00:00:00 2001 From: mjk22071998 Date: Tue, 1 Oct 2024 15:54:37 +0500 Subject: [PATCH] removed trailing whitespace and formatted import section --- data_structures/linked_list/sorted_linked_list.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/data_structures/linked_list/sorted_linked_list.py b/data_structures/linked_list/sorted_linked_list.py index 0df47e369..645c7751b 100644 --- a/data_structures/linked_list/sorted_linked_list.py +++ b/data_structures/linked_list/sorted_linked_list.py @@ -1,8 +1,7 @@ from __future__ import annotations -from typing import Optional from dataclasses import dataclass - +from typing import Optional # This is a sorted linked list class that creates # a sorted linked list of integer datatype @@ -367,4 +366,4 @@ if __name__ == "__main__": elif choice == "4": break else: - print("Wrong input") + print("Wrong input") \ No newline at end of file