mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-15 03:53:41 +02:00
[Fix] Fix ruff errors and a few type annotations
This commit is contained in:
parent
8d86295ac5
commit
2d34b355ed
5 changed files with 16 additions and 6 deletions
|
@ -6,11 +6,13 @@ import matplotlib
|
|||
import matplotlib.pyplot as plt
|
||||
import pandas as pd
|
||||
import pickle
|
||||
from .obs import Obs
|
||||
from .obs import Obs, CObs
|
||||
from .version import __version__
|
||||
from numpy import float64, int64, ndarray
|
||||
from typing import List, Type, Union
|
||||
from typing import List, Type, Union, TYPE_CHECKING
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from .correlators import Corr
|
||||
|
||||
def print_config():
|
||||
"""Print information about version of python, pyerrors and dependencies."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue