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()