From 6198a141a9f42231b773caf2bb3a3b51f66511b1 Mon Sep 17 00:00:00 2001 From: Amanda Richardson Date: Wed, 16 Oct 2024 14:15:39 -0700 Subject: [PATCH] address one comment from Matt --- smartsim/_core/generation/operations/operations.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/smartsim/_core/generation/operations/operations.py b/smartsim/_core/generation/operations/operations.py index 83609b0710..48ccc6c7b2 100644 --- a/smartsim/_core/generation/operations/operations.py +++ b/smartsim/_core/generation/operations/operations.py @@ -9,17 +9,21 @@ from ...commands import Command from .utils.helpers import check_src_and_dest_path -# pylint: disable=invalid-name +# pylint: disable-next=invalid-name entry_point_path = "smartsim._core.entrypoints.file_operations" """Path to file operations module""" +# pylint: disable-next=invalid-name copy_cmd = "copy" """Copy file operation command""" +# pylint: disable-next=invalid-name symlink_cmd = "symlink" """Symlink file operation command""" +# pylint: disable-next=invalid-name configure_cmd = "configure" """Configure file operation command""" +# pylint: disable-next=invalid-name default_tag = ";" """Default configure tag"""