Skip to content

Commit

Permalink
removing nan from properties query (#906)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndresOrtegaGuerrero authored Oct 28, 2024
1 parent b0cfdbd commit 15f46b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiidalab_qe/app/utils/search_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def setup_widgets(self):
</style>
"""

unique_properties = set(self.df["Properties"].explode())
unique_properties = set(self.df["Properties"].explode().dropna())
unique_properties.discard(None)
property_checkboxes = [
ipw.Checkbox(
Expand Down

0 comments on commit 15f46b0

Please sign in to comment.