X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBCpuPage.py;h=f38ab35c5069b5ec5b037d219cb991850f6683d6;hb=3001f6f9ca19a6dd354cb1f82425253484c5468b;hp=a67f98e06216e385c31d91d51ba8bc388b2c302d;hpb=fdc88a37b41df85d15b91ff1b5d12474e0d38bf3;p=bertos.git diff --git a/wizard/BCpuPage.py b/wizard/BCpuPage.py index a67f98e0..f38ab35c 100644 --- a/wizard/BCpuPage.py +++ b/wizard/BCpuPage.py @@ -47,9 +47,9 @@ class BCpuPage(BWizardPage): tag_dict = self.projectInfo("ALL_CPU_TAGS") for tag in tag_dict: if tag in infos["CPU_TAGS"] + [infos["CPU_NAME"], infos["CORE_CPU"], infos["TOOLCHAIN"]]: - tag_dict[tag] = "True" + tag_dict[tag] = True else: - tag_dict[tag] = "False" + tag_dict[tag] = False self.setProjectInfo("ALL_CPU_TAGS", tag_dict) return True else: @@ -86,9 +86,9 @@ class BCpuPage(BWizardPage): cpu_name = self.projectInfo("CPU_NAME") selected_freq = self.projectInfo("SELECTED_FREQ") self.setupUi() - if not cpu_name is None: + if cpu_name: self.selectItem(cpu_name) - if not selected_freq is None: + if selected_freq: self.setFrequency(selected_freq) self.freq_modified = True QApplication.instance().restoreOverrideCursor() @@ -134,7 +134,7 @@ class BCpuPage(BWizardPage): # Create, fill and store the dict with the tags tag_dict = {} for element in tag_list: - tag_dict[element] = "False" + tag_dict[element] = False self.setProjectInfo("ALL_CPU_TAGS", tag_dict) for cpu in infos: item = QListWidgetItem(cpu["CPU_NAME"])