Skip to content

Commit ba09718

Browse files
committed
test cov
1 parent a5d77e0 commit ba09718

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ellar_cli/manage_commands/create_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ def __init__(
4747
if self._specified_directory and "." not in self._specified_directory:
4848
self.prefix = self._specified_directory.replace("/", ".").lower()
4949

50-
if self.prefix.startswith("."):
50+
if self.prefix.startswith("."): # pragma: no cover
5151
self.prefix = self.prefix[1:]
5252

53-
if self.prefix.endswith("."):
53+
if self.prefix.endswith("."): # pragma: no cover
5454
self.prefix = self.prefix[:-1]
5555

5656
def get_scaffolding_context(self, working_project_name: str) -> t.Dict:

0 commit comments

Comments
 (0)