@@ -877,7 +877,7 @@ def findLowestDifferingSymbol(self, otherMapFile: MapFile) -> tuple[Symbol, Sect
877877 # We want to check the previous section, not the current one,
878878 # since we already know the current one doesn't have a symbol
879879 # preceding the one we found.
880- j -= 1 ;
880+ j -= 1
881881
882882 while i >= 0 :
883883 builtSegment = self [i ]
@@ -916,7 +916,7 @@ def getProgress(self, asmPath: Path, nonmatchings: Path, aliases: dict[str, str]
916916 progressPerFolder : dict [str , ProgressStats ] = dict ()
917917
918918 if self .debugging :
919- utils .eprint (f "getProgress():" )
919+ utils .eprint ("getProgress():" )
920920
921921 for segment in self ._segmentsList :
922922 for section in segment :
@@ -965,22 +965,22 @@ def getProgress(self, asmPath: Path, nonmatchings: Path, aliases: dict[str, str]
965965 totalStats .undecompedSize += symSize
966966 progressPerFolder [folder ].undecompedSize += symSize
967967 if self .debugging :
968- utils .eprint (f " the whole section is undecomped (no individual function files exist yet)" )
968+ utils .eprint (" the whole section is undecomped (no individual function files exist yet)" )
969969 elif self .findSymbolByName (f"{ func .name } .NON_MATCHING" ) is not None :
970970 totalStats .undecompedSize += symSize
971971 progressPerFolder [folder ].undecompedSize += symSize
972972 if self .debugging :
973- utils .eprint (f " the function hasn't been matched yet (there's a `.NON_MATCHING` symbol with the same name)" )
973+ utils .eprint (" the function hasn't been matched yet (there's a `.NON_MATCHING` symbol with the same name)" )
974974 elif checkFunctionFiles and funcAsmPath .exists ():
975975 totalStats .undecompedSize += symSize
976976 progressPerFolder [folder ].undecompedSize += symSize
977977 if self .debugging :
978- utils .eprint (f " the function hasn't been matched yet (the function section still exists)" )
978+ utils .eprint (" the function hasn't been matched yet (the function section still exists)" )
979979 else :
980980 totalStats .decompedSize += symSize
981981 progressPerFolder [folder ].decompedSize += symSize
982982 if self .debugging :
983- utils .eprint (f " the function is matched! (the function section was not found)" )
983+ utils .eprint (" the function is matched! (the function section was not found)" )
984984
985985 return totalStats , progressPerFolder
986986
@@ -1111,7 +1111,7 @@ def toCsv(self, printVram: bool=True, skipWithoutSymbols: bool=True) -> str:
11111111 return ret
11121112
11131113 def toCsvSymbols (self ) -> str :
1114- ret = f "Section," + Symbol .toCsvHeader () + "\n "
1114+ ret = "Section," + Symbol .toCsvHeader () + "\n "
11151115
11161116 for segment in self ._segmentsList :
11171117 ret += segment .toCsvSymbols ()
0 commit comments