From 3ba1d2e722802f987f45afd0af9bdc6b29601b52 Mon Sep 17 00:00:00 2001 From: AndresOrtegaGuerrero Date: Sun, 22 Sep 2024 16:02:12 +0000 Subject: [PATCH] pre-commit --- src/aiidalab_qe_vibroscopy/app/result.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/aiidalab_qe_vibroscopy/app/result.py b/src/aiidalab_qe_vibroscopy/app/result.py index e0b532d..36cc7c8 100644 --- a/src/aiidalab_qe_vibroscopy/app/result.py +++ b/src/aiidalab_qe_vibroscopy/app/result.py @@ -94,7 +94,6 @@ def _update_view(self): _bands_plot_view_class.update_layout( yaxis=dict(autorange=True), # Automatically scale the y-axis ) - # the data (bands and pdos) are the first element of the lists phonon_data["bands"] and phonon_data["pdos"]! downloadBandsPdos_widget = DownloadBandsPdosWidget( @@ -209,14 +208,13 @@ def _update_view(self): dielectric_results = DielectricResults(dielectric_data) children_result_widget += (dielectric_results,) tab_titles.append("Dielectric properties") - + # euphonic if ins_data: intensity_maps = EuphonicSuperWidget(fc=ins_data["fc"]) children_result_widget += (intensity_maps,) tab_titles.append("Inelastic Neutrons") - self.result_tabs = ipw.Tab(children=children_result_widget) for title_index in range(len(tab_titles)):