Unverified Commit 5c02efdd authored by AJ Fite's avatar AJ Fite 🚀
Browse files

minor tweaks to licor strat

parent d70bce18
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -58,7 +58,8 @@ class LicorThread(QThread):

        def on_created(self, event):
            file = open(event.src_path, "r")
            output = float(file.read())
            output = float(file.read().strip())
            file.close()
            self.event_thread.new_licor.emit(output)

    def run(self):