Skip to content

Commit

Permalink
feat: Add the Main_Configuration_File to filesystem in constants.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkapfham committed Jul 18, 2023
1 parent e024db8 commit 9ab2620
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions chasten/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)

Expand All @@ -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
Expand Down

0 comments on commit 9ab2620

Please sign in to comment.