Skip to content

Commit

Permalink
Adding the simple attribute to the object to be handled later.
Browse files Browse the repository at this point in the history
  • Loading branch information
gamesbrainiac committed Dec 6, 2023
1 parent 41ce94c commit a5230ce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions esmerald/core/directives/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ def handle(self, app_or_project: str, name: str, **options: Any) -> Any:
self.a_or_an = "an" if app_or_project == "app" else "a"
self.verbosity = options["verbosity"]

# Todo: Handle the creation of a simple project
self.simple = options["simple"]

self.validate_name(name)

top_dir = os.path.join(os.getcwd(), name)
Expand Down

0 comments on commit a5230ce

Please sign in to comment.