From 8d8b3f7e536dc7ba48ff9c18af0129c9286ea7e8 Mon Sep 17 00:00:00 2001 From: marina <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Mon, 7 Aug 2023 15:48:20 -0700 Subject: [PATCH] Update linked_list_fifo.py --- linked_lists/linked_list_fifo.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/linked_lists/linked_list_fifo.py b/linked_lists/linked_list_fifo.py index f9d2c3c..4a2b1ec 100644 --- a/linked_lists/linked_list_fifo.py +++ b/linked_lists/linked_list_fifo.py @@ -2,8 +2,7 @@ # -*- coding: utf-8 -*- # author: bt3gl -class Node(): - """Implementation of a Node for a binary tree""" +class Node: def __init__(self, value=None): self.value = value @@ -16,7 +15,6 @@ class Node(): class LinkedListFIFO: - '''A Linked-List class with a first-in-first-out logic''' def __init__(self): self.head = None