We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f51c9c commit f1463e8Copy full SHA for f1463e8
aloscene/io/flow.py
@@ -45,5 +45,4 @@ def load_scene_flow(path: str) -> np.ndarray:
45
f"Scene flow file should be of type .npy, but {path} has the extension .{path.split('.')[-1]}"
46
)
47
with open(path, "rb") as file:
48
- data = np.load(file)
49
- return data
+ return np.load(file)
0 commit comments