Skip to content

Commit

Permalink
Merge pull request #14 from marty0678/master
Browse files Browse the repository at this point in the history
Minor syntax fixes
  • Loading branch information
marty0678 authored Jul 22, 2020
2 parents efcc651 + d132327 commit 197da02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Python Reader/thirdParty_motion.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,8 @@ def __init__(self, data, intSig, fltSig):

name = ""

for i in range(currentZone['length']):
name = name + (temp[i].decode("utf-8"))
for character in range(currentZone['length']):
name = name + (temp[character].decode("utf-8"))

currentZone['name'] = name

Expand All @@ -362,7 +362,7 @@ def printModule(self):
print("Zone Modules : ", self.numZones)

for zone in self.zones:
print(f"=============Zone Sub-Module==============")
print("=============Zone Sub-Module==============")
print("Zone Size : ", zone['size'])
print("Zone Length : ", zone['length'])
print("Zone Name : ", zone['name'])

0 comments on commit 197da02

Please sign in to comment.