Skip to content

Commit 9bae001

Browse files
Fixed the indetation error
1 parent 76ff950 commit 9bae001

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

Utilities/PlotterUtil_GUI_v3.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -803,11 +803,12 @@ def load_file_data(self, filepath):
803803

804804
except Exception as e:
805805
self._handle_load_error(filepath, e)
806-
807-
finally:
808-
if self.active_filepath == filepath:
809-
self.start_file_watcher()
810-
self.plot_data() def append_file_data(self):
806+
finally:
807+
if self.active_filepath == filepath:
808+
self.start_file_watcher()
809+
self.plot_data()
810+
811+
def append_file_data(self):
811812
"""Efficiently reads and appends only new data from the file."""
812813
if not self.active_filepath or not os.path.exists(
813814
self.active_filepath):

0 commit comments

Comments
 (0)