Skip to content

Commit

Permalink
Disable _generate_dcs_bios_jsons call pending issue #337 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emcek committed Aug 11, 2024
1 parent 2df00d3 commit 42e7fae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dcspy/qt_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,8 @@ def _get_plane_aliases(self, plane_name: str) -> dict:
:return: A dictionary of the plane aliases or empty dict.
"""
try:
self._generate_dcs_bios_jsons(dcs_path=self.dcs_path, bios_path=self.bios_path)
# todo: first fix issue #337
# self._generate_dcs_bios_jsons(dcs_path=self.dcs_path, bios_path=self.bios_path)
return get_plane_aliases(plane=plane_name, bios_dir=self.bios_path)
except FileNotFoundError as err:
message = f'Folder not exists:\n{self.bios_path}\n\nCheck DCS-BIOS path.\n\n{err}' # generate json/bios
Expand Down

0 comments on commit 42e7fae

Please sign in to comment.