Skip to content

Commit

Permalink
style: removing underscore based on ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-gupta committed Jan 7, 2025
1 parent 3e0278d commit 77ddf79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions edgetest/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ def basedir(self) -> Path:
Path
Base directory for execution.
"""
_basedir = Path.cwd() / ".edgetest"
_basedir.mkdir(exist_ok=True)
basedir = Path.cwd() / ".edgetest"
basedir.mkdir(exist_ok=True)

return _basedir
return basedir

@property
def python_path(self) -> str:
Expand Down

0 comments on commit 77ddf79

Please sign in to comment.