Skip to content

Commit

Permalink
Reverting change, not needed if properly passing *args, **kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
rgoya authored Nov 4, 2024
1 parent a682ab2 commit 5b37a69
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dvc/repo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,9 +458,8 @@ def _ignore(self):
if cache_dir := self.cache.default_local_cache_dir:
flist.append(cache_dir)

if self.scm_context:
for file in flist:
self.scm_context.ignore(file)
for file in flist:
self.scm_context.ignore(file)

def brancher(self, *args, **kwargs):
from dvc.repo.brancher import brancher
Expand Down

0 comments on commit 5b37a69

Please sign in to comment.