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 fbe621a commit bd14fd0Copy full SHA for bd14fd0
1 file changed
src/PROBESt/misc.py
@@ -4,7 +4,10 @@
4
import glob
5
import pandas as pd
6
import numpy as np
7
-from typing import List, Dict, Optional
+from typing import List, Dict, Optional, TYPE_CHECKING
8
+
9
+if TYPE_CHECKING:
10
+ from argparse import Namespace
11
12
13
def write_stats(stats: dict, output_dir: str):
0 commit comments