Merge pull request #12 from chu23465/main
Update device.py for better naming
This commit is contained in:
commit
27c666915d
|
@ -102,4 +102,4 @@ class Device:
|
|||
|
||||
def get_name(self):
|
||||
name = f"{self.group_certificate.get_name()}_sl{self.group_certificate.get_security_level()}"
|
||||
return ''.join(char for char in name if (char.isalpha() or char in ['_', '-', ' '])).strip().lower().replace(" ", "_")
|
||||
return ''.join(char for char in name if (char.isalnum() or char in '_- ')).strip().lower().replace(" ", "_")
|
||||
|
|
Loading…
Reference in New Issue