Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Sep 29, 2022
1 parent 5da9ce8 commit dedf6ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion getdist/gui/SyntaxHighlight.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def match_multiline(self, text, delimiter, in_state, style):
# As long as there's a delimiter match on this line...
while start >= 0:
# Look for the ending delimiter
match = delimiter.match(text, start+add)
match = delimiter.match(text, start + add)
end = match.capturedStart()
# Ending delimiter on this line?
if end >= add:
Expand Down
3 changes: 2 additions & 1 deletion getdist/gui/mainwindow.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python
# !/usr/bin/env python

import os
import copy
Expand Down Expand Up @@ -67,6 +67,7 @@
QTabWidget, QWidget, QComboBox, QPushButton, QCheckBox, QRadioButton, QGridLayout, QVBoxLayout, \
QSplitter, QHBoxLayout, QToolBar, QPlainTextEdit, QScrollArea, QFileDialog, QMessageBox, QTableWidgetItem, \
QLabel, QTableWidget, QListWidgetItem, QTextEdit, QDialogButtonBox, QAction, QShortcut

os.environ['QT_API'] = 'pyside2'

# works with or without this:
Expand Down

0 comments on commit dedf6ff

Please sign in to comment.