Skip to content
Snippets Groups Projects
Commit 6d422925 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

added some generic imports in the inits

parent 04cb21b5
No related branches found
No related tags found
No related merge requests found
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from saqc.core.core import runner
from saqc.flagger import *
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from saqc.core.core import runner
......@@ -2,12 +2,14 @@
# -*- coding: utf-8 -*-
import numbers
from typing import Sequence, Union, T
from typing import Sequence, Union
import numpy as np
import pandas as pd
import numba as nb
from saqc.lib.types import T
def assertScalar(name, value, optional=False):
if (not np.isscalar(value)) and (value is not None) and (optional is True):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment