瀏覽代碼

formatting

Dave Schuyler 20 年之前
父節點
當前提交
ff18df1947
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      direct/src/directtools/DirectUtil.py

+ 1 - 1
direct/src/directtools/DirectUtil.py

@@ -79,7 +79,7 @@ def getFileData(filename, separator = ','):
         if l:
             # If its a valid line, split on separator and
             # strip leading/trailing whitespace from each element
-            data = map(lambda s : s.strip(), l.split(separator))
+            data = map(lambda s: s.strip(), l.split(separator))
             fileData.append(data)
     return fileData