Skip to content

Commit

Permalink
Update hips/tiles/survey.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cdeil committed Jul 7, 2018
1 parent 2cf81b1 commit ead742f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hips/tiles/survey.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ def tile_url(self, tile_meta: HipsTileMeta) -> str:

def to_string(self):
"""Convert properties to string"""
lines = [f'{k:20s} = {v}' for k, v in self.data.items()]
return '\n'.join(lines)
lines = [f'{k:20s} = {v}\n' for k, v in self.data.items()]
return ''.join(lines)

def write(self, path):
"""
Expand Down

0 comments on commit ead742f

Please sign in to comment.