From 0cbdbd2ed9e18fb90b8f4f7ed87390558cc47b59 Mon Sep 17 00:00:00 2001 From: Tom Reitz Date: Wed, 26 Jul 2023 08:00:00 -0500 Subject: [PATCH] fix typo in descriptor CSV header --- lightbeam/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightbeam/api.py b/lightbeam/api.py index 12d6349..df5c54e 100644 --- a/lightbeam/api.py +++ b/lightbeam/api.py @@ -277,7 +277,7 @@ async def load_descriptors_values(self): # save if self.lightbeam.track_state: self.logger.debug(f"saving descriptor values to {cache_file}...") - header = ['desriptor', 'namespace', 'codeValue', 'shortDescription', 'description'] + header = ['descriptor', 'namespace', 'codeValue', 'shortDescription', 'description'] with open(cache_file, 'w', encoding='UTF8', newline='') as f: writer = csv.writer(f) writer.writerow(header)