We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5d77e0 commit ba09718Copy full SHA for ba09718
ellar_cli/manage_commands/create_project.py
@@ -47,10 +47,10 @@ def __init__(
47
if self._specified_directory and "." not in self._specified_directory:
48
self.prefix = self._specified_directory.replace("/", ".").lower()
49
50
- if self.prefix.startswith("."):
+ if self.prefix.startswith("."): # pragma: no cover
51
self.prefix = self.prefix[1:]
52
53
- if self.prefix.endswith("."):
+ if self.prefix.endswith("."): # pragma: no cover
54
self.prefix = self.prefix[:-1]
55
56
def get_scaffolding_context(self, working_project_name: str) -> t.Dict:
0 commit comments