Skip to content

Commit

Permalink
Replace str format with str cast
Browse files Browse the repository at this point in the history
  • Loading branch information
dericke committed Jan 24, 2021
1 parent 4e41ee6 commit beefb9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/data_model.py
Expand Up @@ -51,7 +51,7 @@ def headerToString(self, sep=u"\t"):

def rowToString(self, row, sep=u"\t"):
return sep.join(
u"%s" % self.getData(row, col)
str(self.getData(row, col))
for col in range(self.columnCount())
)

Expand Down

0 comments on commit beefb9e

Please sign in to comment.