Skip to content

Commit cde155e

Browse files
authored
Remove unnecessary UTF-8 encoding declarations and update string formatting to f-strings (#595)
1 parent 79aad14 commit cde155e

34 files changed

+71
-90
lines changed

.github/workflows/test.yaml

+11-7
Original file line numberDiff line numberDiff line change
@@ -28,33 +28,37 @@ jobs:
2828
matrix:
2929
python-version: [3.9]
3030
env:
31-
DJANGO: 3.0
31+
DJANGO: 3.0
3232
SECRET_KEY: supersecret
33-
DB_PORT: 5432
33+
DB_PORT: 5432
3434
POSTGRES_HOST: localhost
3535
POSTGRES_PASSWORD: somepassword
3636
POSTGRES_USER: postgres
3737
POSTGRES_DB: testing_db
3838
DJANGO_SETTINGS_MODULE: pyarweb.settings.development
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v4
41+
4142
- name: Set up Python ${{ matrix.python-version }}
4243
uses: actions/setup-python@v2
4344
with:
4445
python-version: ${{ matrix.python-version }}
46+
4547
- name: Install system libraries
4648
run: |
4749
sudo apt-get install -y libpq-dev libxml2-dev libxslt1-dev
50+
4851
- name: Install dependencies
4952
run: |
5053
python -m pip install --upgrade pip
5154
pip install -r dev_requirements.txt
52-
- name: Lint with flake8
53-
run: |
54-
flake8
55+
56+
- name: Check Code Style
57+
uses: pre-commit/[email protected]
58+
5559
- name: Run migrations
5660
run: |
57-
python manage.py migrate
61+
python manage.py migrate
5862
- name: Run tests
5963
run: |
6064
pytest -v

.pre-commit-config.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
repos:
2+
- repo: https://github.com/pycqa/flake8
3+
rev: 7.1.1
4+
hooks:
5+
- id: flake8
6+
args:
7+
- '--config=.flake8'
8+
- '--exclude=.venv,**/migrations/*.py'
9+
10+
- repo: https://github.com/asottile/pyupgrade
11+
rev: v3.19.1
12+
hooks:
13+
- id: pyupgrade
14+
args: [--py39-plus]
15+

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ only_test:
2828
pep8:
2929
docker-compose run --rm web flake8
3030

31+
format:
32+
pre-commit run -a
33+
3134
test: pep8 only_test
3235

3336
dockershell:

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ instrucciones generales en [esta página de la wiki](https://github.com/PyAr/pya
2020

2121
podés ver las instrucciones en [esta página de la wiki](https://github.com/PyAr/pyarweb/wiki/Instalacion-con-Docker)
2222

23+
## Lint & Format
24+
25+
Para correr el linter y el formateador de código, podés correr:
26+
27+
```bash
28+
make format
29+
```
2330

2431
## Más info
2532

community/urls.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from django.conf.urls import patterns, url
42

53

community/views.py

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
3-
41
"""Handle the Views of the Homepage and others."""
52

63
from django.db.models import F, Value, CharField
@@ -59,7 +56,7 @@ def get_context_data(self, **kwargs):
5956
# Sort the last news, jobs and events to define the definitive 'recent' list
6057
recent = sorted(news + jobs + events, key=lambda r: r.created, reverse=True)
6158

62-
context = super(HomePageView, self).get_context_data(**kwargs)
59+
context = super().get_context_data(**kwargs)
6360
context['recent'] = recent[:RECENT_ITEMS_LEN]
6461
return context
6562

@@ -84,7 +81,7 @@ class OwnedObject(SingleObjectMixin):
8481
before allowing manipulation. """
8582

8683
def get_object(self, *args, **kwargs):
87-
obj = super(OwnedObject, self).get_object(*args, **kwargs)
84+
obj = super().get_object(*args, **kwargs)
8885
return validate_obj_owner(obj, self.request.user)
8986

9087

@@ -102,7 +99,7 @@ def dispatch(self, request, *args, **kwargs):
10299
self.included_tags.append(k[4:])
103100
elif v == '2':
104101
self.excluded_tags.append(k[4:])
105-
return super(FilterableList, self).dispatch(request, *args, **kwargs)
102+
return super().dispatch(request, *args, **kwargs)
106103

107104
def filter_queryset_tags(self, obj_list):
108105
included = self.included_tags
@@ -114,10 +111,10 @@ def filter_queryset_tags(self, obj_list):
114111
return obj_list
115112

116113
def get_queryset(self):
117-
return self.filter_queryset_tags(super(FilterableList, self).get_queryset())
114+
return self.filter_queryset_tags(super().get_queryset())
118115

119116
def get_context_data(self, **kwargs):
120-
context = super(FilterableList, self).get_context_data(**kwargs)
117+
context = super().get_context_data(**kwargs)
121118
context['tags'] = self.model.tags.all()
122119
context['included'] = self.included_tags
123120
context['excluded'] = self.excluded_tags

events/forms.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Meta:
7373
}
7474

7575
def clean(self):
76-
cleaned_data = super(EventForm, self).clean()
76+
cleaned_data = super().clean()
7777
start_at = cleaned_data.get('start_at')
7878
end_at = cleaned_data.get('end_at')
7979
if start_at is not None and end_at is not None:
@@ -84,7 +84,7 @@ def clean(self):
8484
return cleaned_data
8585

8686
def save(self, *args, **kwargs):
87-
super(EventForm, self).save(*args, **kwargs)
87+
super().save(*args, **kwargs)
8888
self.instance.save()
8989

9090

events/migrations/0001_initial.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.db import migrations, models
52
from django.conf import settings
63

events/migrations/0002_auto_20170325_2011.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.db import migrations, models
52
from django.conf import settings
63

@@ -50,6 +47,6 @@ class Migration(migrations.Migration):
5047
),
5148
migrations.AlterUniqueTogether(
5249
name='eventparticipation',
53-
unique_together=set([('event', 'email')]),
50+
unique_together={('event', 'email')},
5451
),
5552
]

events/migrations/0003_eventparticipation_gender.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.db import migrations, models
52

63

events/migrations/0004_auto_20180428_1949.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.db import migrations, models
52

63

events/migrations/0005_auto_20180429_1546.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.db import migrations, models
52
import autoslug.fields
63

events/mixins.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
import csv
32

43
from crispy_forms.helper import FormHelper
@@ -29,7 +28,7 @@ def get_crispy_fields(self):
2928
return self.Meta.fields
3029

3130

32-
class EventMixin(object):
31+
class EventMixin:
3332
"""Mixin for common attrs."""
3433

3534
model = Event
@@ -38,7 +37,7 @@ def get_success_url(self):
3837
return reverse_lazy('events:events_list_all')
3938

4039

41-
class EventParticipationMixin(object):
40+
class EventParticipationMixin:
4241
"""Mixin for common attrs."""
4342

4443
model = EventParticipation
@@ -51,13 +50,13 @@ def get_success_url(self):
5150
return reverse_lazy('events:detail', kwargs={'pk': self.kwargs['pk']})
5251

5352

54-
class ReadOnlyFieldsMixin(object):
53+
class ReadOnlyFieldsMixin:
5554
"""Adds the posibility to declare fields as read-only (until we update to Django 1.9 or so"""
5655

5756
readonly_fields = ()
5857

5958
def __init__(self, *args, **kwargs):
60-
super(ReadOnlyFieldsMixin, self).__init__(*args, **kwargs)
59+
super().__init__(*args, **kwargs)
6160
for field in (field for name, field in self.fields.items() if
6261
name in self.readonly_fields):
6362
field.widget.attrs['disabled'] = 'true'
@@ -66,10 +65,10 @@ def __init__(self, *args, **kwargs):
6665
def clean(self):
6766
for f in self.readonly_fields:
6867
self.cleaned_data.pop(f, None)
69-
return super(ReadOnlyFieldsMixin, self).clean()
68+
return super().clean()
7069

7170

72-
class CSVResponseMixin(object):
71+
class CSVResponseMixin:
7372
"""Return a csv file based on a list of lists."""
7473
csv_filename = 'csvfile.csv'
7574

@@ -84,7 +83,7 @@ def get_csv_filename(self):
8483

8584
def render_to_csv(self):
8685
response = HttpResponse(content_type='text/csv')
87-
cd = 'attachment; filename="{0}"'.format(self.get_csv_filename())
86+
cd = f'attachment; filename="{self.get_csv_filename()}"'
8887
response['Content-Disposition'] = cd
8988

9089
writer = csv.writer(response)

events/tests/test_views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,5 @@ def test_events_view_delete(self):
103103

104104
def test_events_view_slug(self):
105105
event = EventFactory()
106-
response_por_slug = self.client.get('/eventos/{}/'.format(event.slug))
106+
response_por_slug = self.client.get(f'/eventos/{event.slug}/')
107107
self.assertEqual(response_por_slug.context['event'].id, event.id)

events/urls.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
from django.urls import re_path, path
32
from django.views.generic.detail import DetailView
43

events/views.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class EventList(ListView):
5454
context_object_name = "eventos_pasados"
5555

5656
def get_context_data(self, **kwargs):
57-
context = super(EventList, self).get_context_data(**kwargs)
57+
context = super().get_context_data(**kwargs)
5858
context['eventos_proximos'] = Event.objects.filter(
5959
end_at__gte=timezone.now()).order_by('start_at')
6060

@@ -86,7 +86,7 @@ def user_participation_details(self):
8686
return details
8787

8888
def get_context_data(self, **kwargs):
89-
context = super(EventDetail, self).get_context_data(**kwargs)
89+
context = super().get_context_data(**kwargs)
9090
context.update(self.user_participation_details())
9191
return context
9292

@@ -96,7 +96,7 @@ class EventCreate(LoginRequiredMixin, EventMixin, CreateView):
9696

9797
def form_valid(self, form):
9898
form.instance.owner = self.request.user
99-
return super(EventCreate, self).form_valid(form)
99+
return super().form_valid(form)
100100

101101

102102
class EventUpdate(LoginRequiredMixin, EventMixin, OwnedObject, UpdateView):
@@ -215,7 +215,7 @@ def get_success_url(self):
215215

216216

217217
class EventParticipationList(LoginRequiredMixin, ListView):
218-
http_method_names = [u'get']
218+
http_method_names = ['get']
219219
context_object_name = 'participants'
220220

221221
def __init__(self, *args, **kwargs):
@@ -224,7 +224,7 @@ def __init__(self, *args, **kwargs):
224224

225225
def get_context_data(self, **kwargs):
226226
"""Overwrite get_context_data to add the related Event's ID to the template context."""
227-
context = super(EventParticipationList, self).get_context_data(**kwargs)
227+
context = super().get_context_data(**kwargs)
228228
context['event'] = self.event
229229
return context
230230

@@ -246,7 +246,7 @@ class EventParticipationDelete(LoginRequiredMixin, EventParticipationMixin, Dele
246246
def get_object(self, *args, **kwargs):
247247
"""A User can delete its participation to an Event. The Event owner can also do that."""
248248

249-
inscription = super(EventParticipationDelete, self).get_object(*args, **kwargs)
249+
inscription = super().get_object(*args, **kwargs)
250250
if self.request.user not in [inscription.user, inscription.event.owner]:
251251
raise Http404()
252252
return inscription
@@ -256,7 +256,7 @@ class EventParticipationDownload(CSVResponseMixin, EventParticipationList):
256256
def get_csv_filename(self):
257257
event = self.event.name.lower().replace(' ', '_')
258258
timestamp = timezone.now().isoformat().replace(':', '').replace('-', '').split('.')[0]
259-
return '{0}-{1}.csv'.format(event, timestamp)
259+
return f'{event}-{timestamp}.csv'
260260

261261
def get_rows(self):
262262
columns = ('Nombre', 'Correo electrónico', 'Género', 'Nivel', 'Usuario PyAr',

joboffers/joboffer_actions.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
21
from dataclasses import dataclass
3-
from typing import Set
42

53
from django.db.models import Q
64

@@ -187,7 +185,7 @@ def get_valid_actions(user, joboffer=None, roles=None):
187185
else:
188186
roles_ = roles
189187

190-
actions: Set[str] = set()
188+
actions: set[str] = set()
191189

192190
for role in roles_:
193191
# Appends the actions for every role

joboffers/management/commands/create_facebook_page_token.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ def handle(self, *args, **options):
8484
data = json.loads(result.text)
8585

8686
long_lived_page_access_token = data.get('access_token')
87-
self.stdout.write(('\nPor favor, copiá el token y pegalo en el archivo .env o su '
88-
'equivalente para el entorno de producción:'))
87+
self.stdout.write('\nPor favor, copiá el token y pegalo en el archivo .env o su '
88+
'equivalente para el entorno de producción:')
8989

9090
self.stdout.write(
9191
self.style.SUCCESS(

joboffers/tests/fixtures.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def create_admin_client(client, admin_user):
3535
return client
3636

3737

38-
class DummyTelegram(object):
38+
class DummyTelegram:
3939
"""
4040
Convenience wrapper of requests mock to simulate telegram responses and tests messages sent
4141
"""

joboffers/tests/test_joboffer_actions.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import pytest
32
from django.contrib.auth.models import AnonymousUser
43

news/forms.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class NewsArticleForm(forms.ModelForm):
1212
body = forms.CharField(widget=SummernoteInplaceWidget())
1313

1414
def __init__(self, *args, **kwargs):
15-
super(NewsArticleForm, self).__init__(*args, **kwargs)
15+
super().__init__(*args, **kwargs)
1616
self.helper = FormHelper()
1717
self.helper.add_input(Submit('news_submit', _('Guardar')))
1818
self.helper.add_input(Reset('news_reset', _('Limpiar'),

news/migrations/0001_initial.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.db import migrations, models
52
import taggit_autosuggest.managers
63
import django.utils.timezone

0 commit comments

Comments
 (0)