Skip to content

Commit df155e1

Browse files
committed
fix: marimo check
1 parent 325154f commit df155e1

File tree

8 files changed

+17
-28
lines changed

8 files changed

+17
-28
lines changed

plugin/examples/cw-test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
# ///
44
# [tool.marimo.k8s]
55
# mounts = ["cw://operator-bucket"]
6+
67
import marimo
78

8-
__generated_with = "0.16.4"
9+
__generated_with = "0.18.4"
910
app = marimo.App()
1011

1112

plugin/examples/getting-started.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import marimo
99

10+
__generated_with = "0.18.4"
1011
app = marimo.App()
1112

1213

@@ -62,7 +63,7 @@ def _(mo, slider):
6263
This cell depends on `slider.value`, so it updates automatically when you
6364
interact with the slider. marimo tracks these dependencies for you.
6465
""")
65-
return (result,)
66+
return
6667

6768

6869
@app.cell

plugin/examples/gpu-getting-started.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
import marimo
1212

13+
__generated_with = "0.18.4"
1314
app = marimo.App()
1415

1516

@@ -43,7 +44,7 @@ def _(mo):
4344
| Device | {device_name} |
4445
| PyTorch Version | {torch.__version__} |
4546
""")
46-
return device, gpu_available, torch
47+
return device, torch
4748

4849

4950
@app.cell
@@ -82,7 +83,7 @@ def matrix_multiply(n: int, device: str):
8283
3. **Share results** — cached data persists in storage, accessible
8384
across sessions
8485
""")
85-
return (matrix_multiply,)
86+
return
8687

8788

8889
@app.cell

plugin/examples/with-cw.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
# [tool.marimo.k8s]
55
# mounts = ["cw://operator-bucket"]
66
# Note: cw-credentials secret is auto-created from ~/.s3cfg by the plugin
7+
78
import marimo
89

9-
__generated_with = "0.16.4"
10+
__generated_with = "0.18.4"
1011
app = marimo.App()
1112

1213

@@ -32,7 +33,6 @@ def check_mount():
3233
result = subprocess.run(["ps", "aux"], capture_output=True, text=True)
3334
if "s3fs" in result.stdout:
3435
print("\ns3fs process is running!")
35-
3636
return
3737

3838

plugin/examples/with-rsync.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
import marimo
99

10-
__generated_with = "0.16.4"
10+
__generated_with = "0.18.4"
1111
app = marimo.App()
1212

1313

1414
@app.cell
15-
def check_sync():
16-
15+
def _():
16+
import marimo as mo
1717
return
1818

1919

plugin/examples/with-sshfs.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import marimo
99

10+
__generated_with = "0.18.4"
1011
app = marimo.App()
1112

1213

@@ -18,16 +19,7 @@ def check_mount():
1819
mount_path = "/home/marimo/notebooks/mounts/sshfs-0"
1920
exists = os.path.exists(mount_path)
2021
files = os.listdir(mount_path) if exists else []
21-
22-
return mo.md(f"""
23-
# SSHFS Mount Test
24-
25-
**Mount path:** `{mount_path}`
26-
27-
**Mounted:** {exists}
28-
29-
**Files:** {files}
30-
""")
22+
return
3123

3224

3325
if __name__ == "__main__":

plugin/examples/with-storage.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import marimo
88

9+
__generated_with = "0.18.4"
910
app = marimo.App()
1011

1112

@@ -16,14 +17,7 @@ def check():
1617

1718
path = "/home/marimo/notebooks"
1819
files = os.listdir(path) if os.path.exists(path) else []
19-
20-
return mo.md(f"""
21-
# Storage Test (2Gi PVC)
22-
23-
**Notebook directory:** `{path}`
24-
25-
**Files:** {files}
26-
""")
20+
return
2721

2822

2923
if __name__ == "__main__":

plugin/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)