Skip to content

Commit

Permalink
[CI] Final tests on main (#835)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
maxschulz-COL and pre-commit-ci[bot] authored Oct 28, 2024
1 parent 407e167 commit a920840
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/pycafe/create_pycafe_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def generate_link(directory: str, extra_requirements: Optional[list[str]] = None
)

# App file
app_content = requests.get(f"{base_url}/app.py").text
app_content = requests.get(f"{base_url}/app.py", timeout=10).text
app_content_split = app_content.split('if __name__ == "__main__":')
if len(app_content_split) > 1:
app_content = app_content_split[0] + textwrap.dedent(app_content_split[1])
Expand Down
2 changes: 1 addition & 1 deletion vizro-core/examples/scratch_dev/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


page = vm.Page(
title="Test New XXXXXX change",
title="Test New ZZZZZZZ",
components=[
vm.Graph(
figure=px.bar(
Expand Down

0 comments on commit a920840

Please sign in to comment.