about summary refs log tree commit diff
path: root/universe.py
diff options
context:
space:
mode:
authorBaitinq <you@example.com>2022-02-09 10:38:42 +0000
committerBaitinq <you@example.com>2022-02-09 10:38:42 +0000
commit1f039b863d2c99cddfbf90b7ed5973be095f01d8 (patch)
tree0611e80c8723efbd9bf339c8233398f87352b9a6 /universe.py
parentAdd payload mass (diff)
downloadOSLS-1f039b863d2c99cddfbf90b7ed5973be095f01d8.tar.gz
OSLS-1f039b863d2c99cddfbf90b7ed5973be095f01d8.tar.bz2
OSLS-1f039b863d2c99cddfbf90b7ed5973be095f01d8.zip
Removed unnecessary plank constant
Diffstat (limited to 'universe.py')
-rw-r--r--universe.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/universe.py b/universe.py
index 2d859e8..a8279ec 100644
--- a/universe.py
+++ b/universe.py
@@ -1,8 +1,7 @@
 class Universe():
-    def __init__(self, name: str, G: float, plank: float):
+    def __init__(self, name: str, G: float):
         self.name = name
         self.G = G
-        self.plank = plank
-
+        
     def __str__(self):
         return "kuu"
\ No newline at end of file