Compare commits
No commits in common. "5ef427ec127b008a3be69ac4907e8ae34afc8762" and "091449819cb65f5023381d21fd1e4cd52659556b" have entirely different histories.
5ef427ec12
...
091449819c
@ -8,11 +8,6 @@
|
||||
Edited for use in PyLoT
|
||||
JG, igem, 01/2022
|
||||
"""
|
||||
|
||||
import os
|
||||
import argparse
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
import glob
|
||||
|
||||
from obspy.core.event import read_events
|
||||
|
@ -90,7 +90,6 @@ class TextLogWidget(QtWidgets.QTextEdit):
|
||||
def __init__(self, parent, highlight_input=False):
|
||||
super(TextLogWidget, self).__init__(parent)
|
||||
self.highlight_input = highlight_input
|
||||
self.append('DUMMY TEXT\n')
|
||||
|
||||
def write(self, text):
|
||||
self.append(text)
|
||||
@ -108,9 +107,7 @@ class LogWidget(QtWidgets.QWidget):
|
||||
self.setMinimumHeight(600)
|
||||
|
||||
self.stdout = TextLogWidget(self)
|
||||
self.stdout.write('DUMMY TEXT 2\n')
|
||||
self.stderr = TextLogWidget(self, highlight_input=True)
|
||||
self.stderr.write('DUMMY TEXT 2\n')
|
||||
self.stderr.highlight.connect(self.active_error)
|
||||
|
||||
self.tabs = QTabWidget()
|
||||
@ -224,7 +221,6 @@ class AddMetadataWidget(QWidget):
|
||||
self.show()
|
||||
# self.__test__()
|
||||
|
||||
# TODO: what is this for? Remove?
|
||||
def __test__(self):
|
||||
self.add_item(r'/rscratch/minos14/marcel/git/pylot/tests')
|
||||
self.add_item(r'/rscratch/minos14/marcel/git/pylot/inputs')
|
||||
|
Loading…
x
Reference in New Issue
Block a user