Skip to content

Commit e7202a8

Browse files
committed
refactor: make pre-commit changes
Refs: PT-1952
1 parent f2881d2 commit e7202a8

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

local_settings.py.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
DATABASE_URL = "postgres://kultus:kultus@localhost/kultus:5434"
2-
SITE_URL = "http://localhost:8000"
2+
SITE_URL = "http://localhost:8000"

notification_importers/templates/notification_change_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
{% trans "Import missing notifications with the importer" %}
99
</a>
1010
</li>
11-
{% endblock %}
11+
{% endblock %}

occurrences/templates/admin/palvelutarjotinevent_changelist.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
</a>
2525
</li>
2626
{{ block.super }}
27-
{% endblock %}
27+
{% endblock %}

pipelines/kultus-api-review.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
trigger: none
99

1010
# Pull request (PR) triggers cause a pipeline to run whenever a pull request is
11-
# opened with one of the specified target branches, or when updates are made to
11+
# opened with one of the specified target branches, or when updates are made to
1212
# such a pull request.
1313
#
14-
# GitHub creates a new ref when a pull request is created. The ref points to a
15-
# merge commit, which is the merged code between the source and target branches
14+
# GitHub creates a new ref when a pull request is created. The ref points to a
15+
# merge commit, which is the merged code between the source and target branches
1616
# of the pull request.
1717
#
18-
# Opt out of pull request validation
18+
# Opt out of pull request validation
1919
pr:
2020
# PR target branch
2121
branches:

reports/templates/reports/admin/enrolmentreport_changelist.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
</form>
88
</li>
99
{{ block.super }}
10-
{% endblock %}
10+
{% endblock %}

reports/templates/reports/admin/organisation_persons.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
{% endfor %}
3535
</tbody>
3636
</table>
37-
{% endblock %}
37+
{% endblock %}

reports/templates/reports/admin/persons.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
</thead>
2424
<tbody>
2525
{% for person in persons %}
26-
26+
2727
<tr>
2828
<td>{{person.name}}</td>
2929
<td>{{person.email}}</td>
3030
<td>{{person.phone_number}}</td>
3131
<td>{% for org in person.organisations.all %}{{org.name}}{% if not forloop.last %}, {% endif %}{% endfor %}</td>
3232
</tr>
33-
33+
3434
{% endfor %}
3535
</tbody>
3636
</table>
37-
{% endblock %}
37+
{% endblock %}

0 commit comments

Comments
 (0)