diff options
| author | Willem Jan Palenstijn <wjp@usecode.org> | 2020-07-04 16:09:33 +0200 |
|---|---|---|
| committer | Willem Jan Palenstijn <wjp@usecode.org> | 2020-07-04 16:09:33 +0200 |
| commit | 618265c569d1917ea106d6937c344b085cf7980b (patch) | |
| tree | 014163a3b0032252e93c6667c2c150b014992c00 | |
| parent | b126aefdda9148143971b95460f6f52010cc2358 (diff) | |
| download | astra-618265c569d1917ea106d6937c344b085cf7980b.tar.gz astra-618265c569d1917ea106d6937c344b085cf7980b.tar.bz2 astra-618265c569d1917ea106d6937c344b085cf7980b.tar.xz astra-618265c569d1917ea106d6937c344b085cf7980b.zip | |
Fix missing import
Thanks to @jleuschn for catching this.
| -rw-r--r-- | python/astra/data2d.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/astra/data2d.py b/python/astra/data2d.py index 6ab458f..cf65ae2 100644 --- a/python/astra/data2d.py +++ b/python/astra/data2d.py @@ -24,6 +24,8 @@ # ----------------------------------------------------------------------- from . import data2d_c as d +from .pythonutils import checkArrayForLink + import numpy as np def clear(): |
