From 4840e17e8f7b74eb447185d21afa22a10d8af919 Mon Sep 17 00:00:00 2001
From: Dmitry <b4tm4n@mail.ru>
Date: Sat, 23 Mar 2024 22:57:35 +0300
Subject: [PATCH] fmt anim1

---
 mod_graph/anim1.py | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/mod_graph/anim1.py b/mod_graph/anim1.py
index 4099bb8..48cdc6e 100644
--- a/mod_graph/anim1.py
+++ b/mod_graph/anim1.py
@@ -17,7 +17,7 @@ class Point(NamedTuple):
     """
     Вспомогательный класс для упрощения работы с координатами (сложение)
     """
-    
+
     x: int | float
     y: int | float
 
@@ -111,10 +111,7 @@ def two_squares(start_pos=None):
 
 def main():
     canvasSize(400, 800)
-    state = [
-        *square_left_to_right(), 
-        *two_squares(Point(0, 350))
-    ]
+    state = [*square_left_to_right(), *two_squares(Point(0, 350))]
 
     watch_timer = None