Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
agahkarakuzu committed Sep 24, 2024
1 parent 71523fe commit cdec899
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/neuroxlink.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self, doi: str, cdn_url: str, config_data: Dict[str, Any]):
self._print_info()

def _print_info(self):
print(f"🔗 importing {self.doi} from 🌎 {self.cdn_url}")
print(f"🔗 importing {self.doi} from 🌎 {self.cdn_url}/content/{self.project_data['slug']}/{self.project_data['index']}.json")
print(self.get_title())
print("-------------------------------------")

Expand Down Expand Up @@ -330,7 +330,7 @@ def create_plotly_object_from(self, label: str) -> Optional[go.Figure]:
return None

def get_plotly_data(self, label: str) -> Optional[pd.DataFrame]:
fig = self.get_plotly_obj(label)
fig = self.create_plotly_object_from(label)
if fig is None:
return None

Expand Down

0 comments on commit cdec899

Please sign in to comment.