From 6d277d84b82301eaa17d79ba8e95845138ac273d Mon Sep 17 00:00:00 2001
From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Date: Mon, 31 Jul 2023 18:59:19 +0000
Subject: [PATCH 1/3] updating DIRECTORY.md

---
 DIRECTORY.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/DIRECTORY.md b/DIRECTORY.md
index aa9bd313b898..fdcf0ceedf1f 100644
--- a/DIRECTORY.md
+++ b/DIRECTORY.md
@@ -236,8 +236,8 @@
     * [Double Ended Queue](data_structures/queue/double_ended_queue.py)
     * [Linked Queue](data_structures/queue/linked_queue.py)
     * [Priority Queue Using List](data_structures/queue/priority_queue_using_list.py)
+    * [Queue By List](data_structures/queue/queue_by_list.py)
     * [Queue By Two Stacks](data_structures/queue/queue_by_two_stacks.py)
-    * [Queue On List](data_structures/queue/queue_on_list.py)
     * [Queue On Pseudo Stack](data_structures/queue/queue_on_pseudo_stack.py)
   * Stacks
     * [Balanced Parentheses](data_structures/stacks/balanced_parentheses.py)

From aa29951d25884801d9f21848d7ce3e2a2d3be720 Mon Sep 17 00:00:00 2001
From: Tianyi Zheng <tianyizheng02@gmail.com>
Date: Mon, 31 Jul 2023 12:00:48 -0700
Subject: [PATCH 2/3] Fix ruff error in
 eulerian_path_and_circuit_for_undirected_graph.py

---
 graphs/eulerian_path_and_circuit_for_undirected_graph.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/graphs/eulerian_path_and_circuit_for_undirected_graph.py b/graphs/eulerian_path_and_circuit_for_undirected_graph.py
index 6c43c5d3e6e3..6b4ea8e21e8b 100644
--- a/graphs/eulerian_path_and_circuit_for_undirected_graph.py
+++ b/graphs/eulerian_path_and_circuit_for_undirected_graph.py
@@ -20,7 +20,7 @@ def check_circuit_or_path(graph, max_node):
     odd_degree_nodes = 0
     odd_node = -1
     for i in range(max_node):
-        if i not in graph.keys():
+        if i not in graph:
             continue
         if len(graph[i]) % 2 == 1:
             odd_degree_nodes += 1

From 18b200ae34eece6b0984a3dcb4cd0347f8841784 Mon Sep 17 00:00:00 2001
From: Tianyi Zheng <tianyizheng02@gmail.com>
Date: Mon, 31 Jul 2023 12:02:14 -0700
Subject: [PATCH 3/3] Fix ruff error in newtons_second_law_of_motion.py

---
 physics/newtons_second_law_of_motion.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/physics/newtons_second_law_of_motion.py b/physics/newtons_second_law_of_motion.py
index cb53f8f6571f..53fab6ce78b9 100644
--- a/physics/newtons_second_law_of_motion.py
+++ b/physics/newtons_second_law_of_motion.py
@@ -60,7 +60,7 @@ def newtons_second_law_of_motion(mass: float, acceleration: float) -> float:
     >>> newtons_second_law_of_motion(2.0, 1)
     2.0
     """
-    force = float()
+    force = 0.0
     try:
         force = mass * acceleration
     except Exception: