1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-04 04:12:23 +01:00

Remove removesuffix

This commit is contained in:
Jesse Hills
2021-09-08 19:51:20 +12:00
parent f87a701b28
commit 4356581db0

View File

@@ -431,7 +431,7 @@ class DashboardEntry:
@property
def name(self):
if self.storage is None:
return self.filename.removesuffix(".yml").removesuffix(".yaml")
return self.filename.replace(".yml", "").replace(".yaml", "")
return self.storage.name
@property