From 57ca891aa86ded85a7948e93725274419e4f1066 Mon Sep 17 00:00:00 2001 From: Sankalp Sanand Date: Tue, 5 Sep 2023 13:28:52 -0400 Subject: [PATCH] Update electron_dal.py to make a comment more verbose --- covalent_ui/api/v1/data_layer/electron_dal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/covalent_ui/api/v1/data_layer/electron_dal.py b/covalent_ui/api/v1/data_layer/electron_dal.py index 0443cdeba..162b5e2e2 100644 --- a/covalent_ui/api/v1/data_layer/electron_dal.py +++ b/covalent_ui/api/v1/data_layer/electron_dal.py @@ -330,7 +330,7 @@ def get_electron_inputs(self, dispatch_id: uuid.UUID, electron_id: int) -> str: def _path_to_qelectron_db(dispatch_id: str) -> Path: """Construct path to the QElectron database in Covalent's results directory.""" - # This is NOT the QServer's data. + # This is NOT the QServer's data but rather the qdb stored on Covalent's server. qdb_path = RESULTS_DIR / dispatch_id / QE_DB_DIRNAME qdb_path = qdb_path.resolve().absolute()