Skip to content

Commit

Permalink
correct python indentation again
Browse files Browse the repository at this point in the history
Signed-off-by: Sergey Isakov <[email protected]>
  • Loading branch information
SergeySlice committed Sep 25, 2019
1 parent 32a3bef commit 12e023a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BaseTools/Source/C/GenFw/GenFw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ Routine Description:

if ((stricmp (argv[0], "-z") == 0) || (stricmp (argv[0], "--zero") == 0)) {
if (mOutImageType == FW_DUMMY_IMAGE) {
mOutImageType = FW_ZERO_DEBUG_IMAGE;
mOutImageType = FW_ZERO_DEBUG_IMAGE;
}
if (mOutImageType == FW_TE_IMAGE || mOutImageType == FW_EFI_IMAGE) {
ZeroDebugFlag = TRUE;
Expand Down
6 changes: 3 additions & 3 deletions BaseTools/Source/Python/AutoGen/GenMake.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ def __init__(self, ModuleAutoGen):
BuildFile.__init__(self, ModuleAutoGen)
self.PlatformInfo = self._AutoGenObject.PlatformInfo
self.IntermediateDirectoryList = ["$(DEBUG_DIR)", "$(OUTPUT_DIR)"]
self.DependencyHeaderFileSet = set()
self.DependencyHeaderFileSet = set()

# Compose a dict object containing information used to do replacement in template
@property
Expand Down Expand Up @@ -1435,7 +1435,7 @@ def __init__(self, PlatformAutoGen):
self.ModuleBuildDirectoryList = []
self.LibraryBuildDirectoryList = []
self.LibraryMakeCommandList = []
self.DependencyHeaderFileSet = set()
self.DependencyHeaderFileSet = set()

# Compose a dict object containing information used to do replacement in template
@property
Expand Down Expand Up @@ -1541,7 +1541,7 @@ class TopLevelMakefile(BuildFile):
def __init__(self, Workspace):
BuildFile.__init__(self, Workspace)
self.IntermediateDirectoryList = []
self.DependencyHeaderFileSet = set()
self.DependencyHeaderFileSet = set()

# Compose a dict object containing information used to do replacement in template
@property
Expand Down

0 comments on commit 12e023a

Please sign in to comment.