Compare commits
No commits in common. "a7da9d7ec89a529635ac757bc1e6131016e6038d" and "57a492cb48adb582615036453327bd1df6b4a964" have entirely different histories.
a7da9d7ec8
...
57a492cb48
@ -4,7 +4,7 @@ from subprocess import run
|
||||
from typing import Iterable
|
||||
|
||||
import pandas as pd
|
||||
from tables import NoSuchNodeError
|
||||
|
||||
|
||||
@dataclass(kw_only=True)
|
||||
class MDSystem(abc.ABC):
|
||||
@ -52,6 +52,6 @@ def load_and_concat_data(systems: Iterable[MDSystem], key: str, verbose: bool =
|
||||
data.append(system.load_results(key=key))
|
||||
if verbose:
|
||||
print(f"Load {system}")
|
||||
except (FileNotFoundError, KeyError, NoSuchNodeError):
|
||||
except (FileNotFoundError, KeyError):
|
||||
continue
|
||||
return pd.concat(data, ignore_index=True)
|
||||
|
Loading…
Reference in New Issue
Block a user