Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
leej3 committed Aug 25, 2024
1 parent 0fae117 commit 18248de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ osm -f path/to/pdf-or-xml2 -u uuid2 --user-managed-compose
# Contributing

If you wish to contribute to this project you can set up a development environment with the following:
On apple silicon: set DOCKER_DEFAULT_PLATFORM=linux/amd64 (`export DOCKER_DEFAULT_PLATFORM=linux/amd64`)

```
pip install -e .
Expand Down
5 changes: 3 additions & 2 deletions web/dashboard/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,10 @@ def on_load():
"affiliation_country",
pa.array(split_col, type=pa.list_(pa.string())),
)
tb.add_column(0, pa.array(["RTransparent"] * len(tb), pa.string()), "metrics")
# tb.add_column(0, pa.array(["RTransparent"] * len(tb), pa.string()), "metrics")
df = tb.to_pandas().assign(metrics="RTransparent")

pn.state.cache["data"] = tb.to_pandas()
pn.state.cache["data"] = df


if __name__ == "__main__":
Expand Down

0 comments on commit 18248de

Please sign in to comment.