Skip to content

Commit

Permalink
remove args and kwargs from archive.list
Browse files Browse the repository at this point in the history
  • Loading branch information
Prodesire committed Mar 5, 2018
1 parent 3ae4ab5 commit e8b1ff7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pydu/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ def extract(self, dst):
except NameError:
pass

def list(self, *args, **kwargs):
self._archive.list(*args, **kwargs)
def list(self):
self._archive.list()

def filenames(self):
return self._archive.getnames()
Expand Down Expand Up @@ -245,8 +245,8 @@ def extract(self, dst):
mode = info.external_attr >> 16
self._copy_permissions(mode, filename)

def list(self, *args, **kwargs):
self._archive.printdir(*args, **kwargs)
def list(self):
self._archive.printdir()

def filenames(self):
return self._archive.namelist()
Expand Down

0 comments on commit e8b1ff7

Please sign in to comment.