Skip to content

Commit

Permalink
fixed logging issue in python code
Browse files Browse the repository at this point in the history
  • Loading branch information
TeunHuijben committed Jan 9, 2025
1 parent 81db430 commit 921bd5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion python/src/intracktive/convert.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import logging
import tempfile
import time
import webbrowser
from pathlib import Path
from typing import Iterable

Expand Down Expand Up @@ -333,7 +334,7 @@ def dataframe_to_browser(df: pd.DataFrame, zarr_dir: Path) -> None:
data_url=str(dataUrl)
) # full hash that encodes viewerState
logging.info("full URL: %s", fullUrl)
# webbrowser.open(fullUrl)
webbrowser.open(fullUrl)


@click.command(name="convert")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
Expand Down Expand Up @@ -52,7 +52,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
Expand Down

0 comments on commit 921bd5f

Please sign in to comment.