Skip to content

Commit 88e4959

Browse files
committed
Fix remaining lint issues
1 parent 4bf483e commit 88e4959

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@
4444

4545

4646
def setup(app):
47-
app.add_config_value("recommonmark_config", {"enable_auto_toc_tree": True,}, True)
47+
app.add_config_value("recommonmark_config", {"enable_auto_toc_tree": True}, True)
4848
app.add_transform(AutoStructify)

junction/profiles/views.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
from junction.conferences.models import Conference
1111

1212
from .forms import ProfileForm
13-
14-
# Profile Stuff
1513
from .models import Profile
1614

1715

junction/proposals/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def create_proposal(request, conference_slug):
148148
conference, action="create", initial={"status": ProposalStatus.PUBLIC}
149149
)
150150
return render(
151-
request, "proposals/create.html", {"form": form, "conference": conference,}
151+
request, "proposals/create.html", {"form": form, "conference": conference}
152152
)
153153

154154
# POST Workflow

tests/factories.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ class Meta:
141141
event_date = fuzzy.FuzzyDate(
142142
datetime.date.today(), datetime.date.today() + timedelta(days=90)
143143
).fuzz()
144-
start_time = fuzzy.FuzzyChoice(["9:30.750000",]).fuzz()
145-
end_time = fuzzy.FuzzyChoice(["10:15.750000",]).fuzz()
144+
start_time = fuzzy.FuzzyChoice(["9:30.750000"]).fuzz()
145+
end_time = fuzzy.FuzzyChoice(["10:15.750000"]).fuzz()
146146
conference = factory.SubFactory("tests.factories.ConferenceFactory")
147147
session = factory.SubFactory("tests.factories.ProposalFactory")
148148

0 commit comments

Comments
 (0)