From 9ab2620dae0861fcceef789fedf5a1a5a99cc866 Mon Sep 17 00:00:00 2001 From: "Gregory M. Kapfhammer" Date: Tue, 18 Jul 2023 15:25:10 -0400 Subject: [PATCH] feat: Add the Main_Configuration_File to filesystem in constants.py. --- chasten/constants.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/chasten/constants.py b/chasten/constants.py index ac0cd1b2..be38f046 100644 --- a/chasten/constants.py +++ b/chasten/constants.py @@ -27,7 +27,7 @@ class Chasten: Name="chasten", Separator="/", Server_Shutdown=":person_shrugging: Shut down chasten's sylog server", - Tagline="chasten: Check the AST of Python Source Code", + Tagline="chasten: Analyze the AST of Python Source Code", Website=":link: GitHub: https://github.com/gkapfham/chasten", ) @@ -38,9 +38,10 @@ class Filesystem: """Define the Filesystem dataclass for constant(s).""" Current_Directory: str + Main_Configuration_File: str -filesystem = Filesystem(Current_Directory=".") +filesystem = Filesystem(Current_Directory=".", Main_Configuration_File="config.yml") # humanreadable constant