Skip to content

Commit

Permalink
ruff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
taobrienlbl committed Nov 5, 2023
1 parent 2910bf4 commit 9ed8641
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fastkde/fastKDE.py
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ def pdf(*args, **kwargs):
use_xarray = False

# if use_xarray was given, check that xarray is installed
if use_xarray == True:
if use_xarray:
try:
import xarray
except ImportError:
Expand Down Expand Up @@ -1361,7 +1361,7 @@ def underlyingFunction(x,x0=305,y0=200,yrange=4):
use_xarray = False

# if use_xarray was given, check that xarray is installed
if use_xarray == True:
if use_xarray:
try:
import xarray
except ImportError:
Expand Down

0 comments on commit 9ed8641

Please sign in to comment.