From 8df10fc7cf71bef91747f88964c3e157e858b878 Mon Sep 17 00:00:00 2001 From: tobiasfremming Date: Tue, 3 Sep 2024 21:09:49 +0200 Subject: [PATCH] refactor: Refactor Limb class for better code organization --- src/agent.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/agent.py b/src/agent.py index 6189c62..afac460 100644 --- a/src/agent.py +++ b/src/agent.py @@ -19,6 +19,11 @@ def __init__(self, env): self.env = env +class Limb(): + length: float + + def __init__(self): + pass class Joint(): @@ -30,10 +35,5 @@ def __init__(self): pass -class Limb(): - length: float - - def __init__(self): - pass \ No newline at end of file