diff --git a/data_structures/linked_list/sorted_linked_list.py b/data_structures/linked_list/sorted_linked_list.py index 6fe95faeb..79e12ab16 100644 --- a/data_structures/linked_list/sorted_linked_list.py +++ b/data_structures/linked_list/sorted_linked_list.py @@ -2,6 +2,8 @@ from __future__ import annotations from dataclasses import dataclass from typing import Optional + + # This is a sorted linked list class that creates # a sorted linked list of integer datatype