Skip to content

Commit bd14fd0

Browse files
committed
linter fix
1 parent fbe621a commit bd14fd0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/PROBESt/misc.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
import glob
55
import pandas as pd
66
import numpy as np
7-
from typing import List, Dict, Optional
7+
from typing import List, Dict, Optional, TYPE_CHECKING
8+
9+
if TYPE_CHECKING:
10+
from argparse import Namespace
811

912

1013
def write_stats(stats: dict, output_dir: str):

0 commit comments

Comments
 (0)