diff --git a/satsim/module.py b/satsim/module.py index fa08d1f..15ccace 100644 --- a/satsim/module.py +++ b/satsim/module.py @@ -3,7 +3,7 @@ class module: id_c = 0 def __init__(self, name): self.fields = {} - self.fields["name"] = "PRIMITIVE" + self.fields["name"] = name self.id = module.id_c module.id_c += 1