Skip to content

Commit

Permalink
♻️ Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
AlTosterino committed Jul 9, 2024
1 parent 7f823a9 commit f5adeda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ line-length = 100
target-version = "py311"

[tool.ruff.lint]
select = ["E", "F", "I", "PL"]
select = ["E", "F", "I", "PL", "T20"]
3 changes: 1 addition & 2 deletions src/adrpy/shared_kernel/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ class Settings:
initial_adr_dir: Path | None = None # TODO: Rename to requested_adr_dir or something
APP_TEMPLATES_DIR: Path = field(init=False, default=Path(__file__).parents[1] / "templates")

@property
@cached_property
def adr_dir(self) -> Path | None:
print("AD", Path.cwd())
if self.initial_adr_dir:
return self.initial_adr_dir
if adr_dir_from_config := self.__get_adr_dir_from_config():
Expand Down

0 comments on commit f5adeda

Please sign in to comment.