From 389d60d118b5d61be387d4f9584f3db4b045d17e Mon Sep 17 00:00:00 2001 From: Mugen Date: Wed, 12 Feb 2025 00:12:27 +0530 Subject: [PATCH] Update circular_linked_list.py --- LinkedLists all Types/circular_linked_list.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/LinkedLists all Types/circular_linked_list.py b/LinkedLists all Types/circular_linked_list.py index 85ece9c046e..1bba861dc8b 100644 --- a/LinkedLists all Types/circular_linked_list.py +++ b/LinkedLists all Types/circular_linked_list.py @@ -1,5 +1,4 @@ -from turtle import mode - +'''Author - Mugen https://github.com/Mugendesu''' class Node : def __init__(self , data , next = None): @@ -131,4 +130,4 @@ def main(): if __name__ == '__main__': - main() \ No newline at end of file + main()