Skip to content

Commit 7396104

Browse files
committed
Fix docustring being too long
1 parent 304063b commit 7396104

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

project/accounts/views.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,10 @@ def get(self, request, username=None):
189189

190190

191191
class ProfileFollowing(LoginRequiredMixin, View):
192-
"""A view that shows list of profiles that profile with given username is following"""
192+
"""
193+
A view that shows list of profiles
194+
that profile with given username is following
195+
"""
193196

194197
def get(self, request, username=None):
195198
profile = get_object_or_404(Profile, user__username=username)

0 commit comments

Comments
 (0)