Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Games
Kajongg
Commits
2e1075ea
Commit
2e1075ea
authored
Dec 16, 2017
by
Wolfgang Rohdewald
Browse files
str(string) is string
parent
98fe39bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/util.py
View file @
2e1075ea
...
...
@@ -225,8 +225,7 @@ class CsvWriter:
def
writerow
(
self
,
row
):
"""write one row"""
self
.
__writer
.
writerow
(
list
(
cell
if
isinstance
(
cell
,
str
)
else
str
(
cell
)
for
cell
in
row
))
self
.
__writer
.
writerow
(
list
(
str
(
cell
)
for
cell
in
row
))
def
__del__
(
self
):
"""clean up"""
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment