[pkgset] Clean up koji package set

* break too long lines
 * remove unneeded code
 * call parent methods with super()

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2016-04-22 14:12:11 +02:00
parent ffcb3684de
commit 0c8eb6c0fb
2 changed files with 16 additions and 12 deletions

View file

@ -69,9 +69,6 @@ class MockFileCache(dict):
"""
def __init__(self, _wrapper):
super(MockFileCache, self).__init__()
# We get all the methods for free from dict, but need to have a member
# that behaves as the actual storage.
self.file_cache = self
def add(self, file_path):
obj = MockFile(file_path)