More Python 2 to Python 3 upgrades

This commit is contained in:
Dion Moult
2024-05-07 16:03:07 +10:00
parent 26434f0331
commit 0a3dddef2f
5 changed files with 5 additions and 5 deletions
@@ -29,7 +29,7 @@ def indent(n, s):
return "\n".join(" "*n + l for l in splitted)
class Base(object):
class Base:
"""
A base class for all code generation classes. Currently only working around
some python 2/3 incompatibilities in terms of unicode file handling.