Skip to content

Commit

Permalink
Hopefully fixed super() calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Nov 24, 2018
1 parent f60a43f commit 13ebddb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion epregressions/builds/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class EPlusInstallDirectory(BaseBuildDirectoryStructure):

def __init__(self):
super(EPlusInstallDirectory, self).__init__()
super(BaseBuildDirectoryStructure, self).__init__()
self.source_directory = None

def set_build_directory(self, build_directory):
Expand Down
2 changes: 1 addition & 1 deletion epregressions/builds/makefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class CMakeCacheMakeFileBuildDirectory(BaseBuildDirectoryStructure):

def __init__(self):
super(CMakeCacheMakeFileBuildDirectory, self).__init__()
super(BaseBuildDirectoryStructure, self).__init__()
self.source_directory = None

def set_build_directory(self, build_directory):
Expand Down
2 changes: 1 addition & 1 deletion epregressions/builds/visualstudio.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class CMakeCacheVisualStudioBuildDirectory(BaseBuildDirectoryStructure):
"""

def __init__(self):
super(CMakeCacheVisualStudioBuildDirectory, self).__init__()
super(BaseBuildDirectoryStructure, self).__init__()
self.source_directory = None
self.build_mode = 'Release'

Expand Down

0 comments on commit 13ebddb

Please sign in to comment.