Skip to content

Commit 7a7556d

Browse files
author
Gordon Shotwell
committed
Add linting action
1 parent bf5c115 commit 7a7556d

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/lint.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Ruff
2+
on: [pull_request]
3+
jobs:
4+
ruff:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
- uses: chartboost/ruff-action@v1

sampling-dashboard/panel/app.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66

77
def first_taxi(data):
88
if data.empty:
9-
return '## First taxi id: *NA*'
9+
return "## First taxi id: *NA*"
1010

1111
return f'## First taxi id: *{data["taxi_id"].iloc[0]}*'
1212

13+
1314
pn.extension(
1415
sizing_mode="stretch_width",
1516
)
@@ -38,7 +39,7 @@ def first_taxi(data):
3839
main=[
3940
pn.bind(first_taxi, sample_data),
4041
pn.pane.Matplotlib(pn.bind(plot_tips, sample_data, scale_input), height=600),
41-
pn.pane.Matplotlib(pn.bind(plot_hist, sample_data), height=600 ),
42+
pn.pane.Matplotlib(pn.bind(plot_hist, sample_data), height=600),
4243
],
4344
main_max_width="850px",
4445
).servable()

0 commit comments

Comments
 (0)