Skip to content

Commit 28356be

Browse files
authored
Add valid computed property dictionary_path to StandardPipeline (#277)
* Updated StandardPipeline.setup() to set dictionary_path IntegrationTestApi.get_deployment() uses the `dictionary_path` property of self.pipeline, so StandardPipeline.setup() needs to set that value * Replaced dictionary_path attribute with a property function for StandardPipeline * Removed line causing CI check failure
1 parent 376f603 commit 28356be

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/fprime_gds/common/pipeline/standard.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def __init__(self):
4545
self.distributor = None
4646
self.client_socket = None
4747
self.logger = None
48-
self.dictionary_path = None
4948
self.up_store = None
5049
self.down_store = None
5150

@@ -250,3 +249,8 @@ def files(self):
250249
def dictionaries(self):
251250
"""Dictionaries member"""
252251
return self.__dictionaries
252+
253+
@property
254+
def dictionary_path(self):
255+
"""Dictionary file path"""
256+
return self.dictionaries.dictionary_path if self.dictionaries else None

0 commit comments

Comments
 (0)