We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea9f392 commit 184f1a6Copy full SHA for 184f1a6
src/ess/reflectometry/gui.py
@@ -1,6 +1,7 @@
1
import glob
2
import os
3
import uuid
4
+from collections.abc import Callable
5
6
import h5py
7
import ipywidgets as widgets
@@ -28,7 +29,7 @@
28
29
30
31
class NexusExplorer:
- def __init__(self, runs_table, run_to_filepath):
32
+ def __init__(self, runs_table: DataGrid, run_to_filepath: Callable[[str], str]):
33
self.runs_table = runs_table
34
self.run_to_filepath = run_to_filepath
35
0 commit comments