Skip to content

Commit abbe918

Browse files
maubrevilleCopilot
andauthored
Update exact/util/cellvizio.py
remove old code Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 797b2e7 commit abbe918

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

exact/util/cellvizio.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ def __init__(self,filename):
5252
self.fi = fileinfo()
5353
self.fileHandle = open(filename, 'rb');
5454
self.fileHandle.seek(5) # we find the FPS at position 05
55-
# fFPSByte = self.fileHandle.read(4)
56-
# self.fps = struct.unpack('>f', fFPSByte)[0]
5755
self.fileHandle.seek(10) # we find the image size at position 10
5856
fSizeByte = self.fileHandle.read(4)
5957
self.fi.size = int.from_bytes(fSizeByte, byteorder='big', signed=True)

0 commit comments

Comments
 (0)