Replace `scc.c` with `c` etc.
Closed this issue · 0 comments
MaxThevenet commented
As agreed offline, let's replace
import scipy.constants as scc
scc.m_e*scc.c**2
with
from scipy.constants import c, m_e
m_e*c**2
consistently across the code.
Closed this issue · 0 comments
As agreed offline, let's replace
import scipy.constants as scc
scc.m_e*scc.c**2
with
from scipy.constants import c, m_e
m_e*c**2
consistently across the code.