Skip to content

Commit

Permalink
Skip None during sync
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Nov 17, 2020
1 parent db5f28c commit 0d6e1a7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions panel/io/location.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ def sync(self, parameterized, parameters=None):
query = {}
for p, name in parameters.items():
v = getattr(parameterized, p)
if v is None:
continue
try:
parameterized.param[p].serialize(v)
except Exception:
Expand Down

0 comments on commit 0d6e1a7

Please sign in to comment.