Skip to content

Commit

Permalink
doc, type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-merzky committed Jan 26, 2020
1 parent 545607e commit 4f5242d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 5 additions & 2 deletions bin/rp_inspect/plot_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,11 @@
else : tstamps.append(None)

data[thing.uid] = tstamps
pipe[thing.uid] = [int(x) for x
in thing.description.get('name', '').split()]
try:
pipe[thing.uid] = [int(x) for x
in thing.description.get('name', '').split()]
except:
pipe[thing.uid] = [0]

# diffs = list()
# for uid in data:
Expand Down
1 change: 0 additions & 1 deletion docs/source/_themes/armstrong/theme.conf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ link_color = #0088cc
link_color_decoration = #0088cc

medium_color_hover = rgba(255, 255, 255, 0.25)
medium_color = rgba(255, 255, 255, 0.5)
green_highlight = #8ecc4c


Expand Down

0 comments on commit 4f5242d

Please sign in to comment.