From 928cb1f98fab07c6d1ee5b7ba5b14c6725caf2a4 Mon Sep 17 00:00:00 2001 From: Thomas Gratier Date: Sun, 23 Oct 2022 17:45:21 +0200 Subject: [PATCH] Fix indent issue --- osn2osm.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/osn2osm.py b/osn2osm.py index a5c87be..f9bd8af 100755 --- a/osn2osm.py +++ b/osn2osm.py @@ -52,17 +52,17 @@ def changeset(self): @property def user(self): - if len(self.comments) != 0: + if len(self.comments) != 0: return self.comments[0].user - else: - return '' + else: + return '' @property def uid(self): - if len(self.comments) != 0: + if len(self.comments) != 0: return self.comments[0].uid - else: - return '' + else: + return '' @property def timestamp(self):