Skip to content

Commit

Permalink
Remove Traficom attributions from PDF and CSV files.
Browse files Browse the repository at this point in the history
Refs: PV-752
  • Loading branch information
danjacob-anders authored and mhieta committed Dec 21, 2023
1 parent a97aed0 commit 370e304
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions parking_permits/exporters.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,8 @@ def get_metadata(self):
return {
"metadata": {
"copyright": {
"© " + _("City of Helsinki") + ", ",
_("Personal data - Digital and population data services agency")
+ ", ",
_("Source: Transport register, Traficom") + " " + str(CURRENT_YEAR),
"© " + _("City of Helsinki"),
_("Personal data - Digital and population data services agency"),
}
}
}
Expand Down Expand Up @@ -230,13 +228,6 @@ def footer(self):
self.cell(
0, 5, _("Personal data - Digital and population data services agency"), 0, 1
)
self.cell(
0,
5,
_("Source: Transport register, Traficom") + " " + str(CURRENT_YEAR),
0,
1,
)

@abc.abstractmethod
def get_title(self):
Expand Down

0 comments on commit 370e304

Please sign in to comment.