Skip to content

Commit

Permalink
keep the linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
DrYak committed Oct 10, 2024
1 parent ae8505e commit a54d91f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lollipop/cli/deconvolute.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def _deconvolute_bootstrap(

for b in (
# Progress bar for sequential bootstrapping
trange(bootstrap, desc=location, leave=(len(locations_list) > 1))
trange(bootstrap, desc=location, leave=(len(locations_list) > 1))
if bootstrap > 1 and n_cores == 1
# No progress bar for parallel bootstrapping
else range(bootstrap)
Expand Down
3 changes: 2 additions & 1 deletion lollipop/preprocessors.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
from pandas.api.types import is_numeric_dtype

# adopting new bahaviour of df.replace().infer_objects()
pd.set_option('future.no_silent_downcasting', True)
pd.set_option("future.no_silent_downcasting", True)


class DataPreprocesser:
"""
Expand Down

0 comments on commit a54d91f

Please sign in to comment.