Skip to content

Commit

Permalink
Remove dead Stage method (iterative#9881)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattseddon authored Aug 29, 2023
1 parent 0602eca commit 3c2c1fe
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions dvc/stage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,15 +285,6 @@ def short_description(self) -> Optional["str"]:
return line.strip()
return desc

def env(self) -> Env:
from dvc.env import DVC_ROOT

env: Env = {}
if self.repo:
env.update({DVC_ROOT: self.repo.root_dir})

return env

def changed_deps(
self, allow_missing: bool = False, upstream: Optional[List] = None
) -> bool:
Expand Down

0 comments on commit 3c2c1fe

Please sign in to comment.