Update imports to match new package name

This commit is contained in:
rasmusvt 2022-04-07 17:11:14 +02:00
parent 27c911cf54
commit 08276301f2
6 changed files with 8 additions and 8 deletions

View file

@ -5,7 +5,7 @@ import pandas as pd
import numpy as np import numpy as np
import math import math
import beamtime.electrochemistry as ec import nafuma.electrochemistry as ec
def plot_gc(path, kind, options=None): def plot_gc(path, kind, options=None):

View file

@ -1,4 +1,4 @@
import beamtime.auxillary as aux import nafuma.auxillary as aux
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
from matplotlib.ticker import (MultipleLocator) from matplotlib.ticker import (MultipleLocator)

View file

@ -1,4 +1,4 @@
import beamtime.auxillary as aux import nafuma.auxillary as aux
import os import os
def test_swap_values(): def test_swap_values():

View file

@ -1,4 +1,4 @@
import beamtime.plotting as btp import nafuma.plotting as btp
from cycler import cycler from cycler import cycler
import itertools import itertools
import numpy as np import numpy as np

View file

@ -9,7 +9,7 @@ import zipfile
import xml.etree.ElementTree as ET import xml.etree.ElementTree as ET
import beamtime.auxillary as aux import nafuma.auxillary as aux
def get_image_array(path): def get_image_array(path):

View file

@ -9,9 +9,9 @@ import math
import ipywidgets as widgets import ipywidgets as widgets
from IPython.display import display from IPython.display import display
import beamtime.xrd as xrd import nafuma.xrd as xrd
import beamtime.auxillary as aux import nafuma.auxillary as aux
import beamtime.plotting as btp import nafuma.plotting as btp
def plot_diffractogram(data, options={}): def plot_diffractogram(data, options={}):