Fix typos discovered by codespell

This commit is contained in:
Christian Clauss
2021-08-07 18:55:49 +02:00
parent 64e5d863f7
commit 25ba122168
155 changed files with 413 additions and 413 deletions

View File

@@ -288,7 +288,7 @@ class PrintTableDraw(wx.ScrolledWindow, PrintBase):
for x in self.data: #becomes one column
data.append([x])
else:
data = [self.data] #becames one row
data = [self.data] #becomes one row
self.data = data
first_value = data[0]
try:
@@ -609,7 +609,7 @@ class PrintTableDraw(wx.ScrolledWindow, PrintBase):
def DrawGridLine(self):
if self.draw == True \
and len(self.column) > 2: #supress grid lines if only one column
and len(self.column) > 2: #suppress grid lines if only one column
try:
size = self.row_line_size[self.data_cnt]
except:
@@ -630,7 +630,7 @@ class PrintTableDraw(wx.ScrolledWindow, PrintBase):
def DrawColumns(self):
if self.draw == True \
and len(self.column) > 2: #surpress grid line if only one column
and len(self.column) > 2: #suppress grid line if only one column
col = 0
for val in self.column:
try: