mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 11:18:26 +02:00
6 lines
192 B
Python
6 lines
192 B
Python
def get_track_name(self):
|
|
prefix = self.prefix + " " if self.prefix else ""
|
|
suffix = self.suffix + " " if self.suffix else ""
|
|
|
|
name = (prefix + self.name + suffix)
|
|
return name
|