Skip to content

Commit fce231e

Browse files
committed
Run linter
1 parent f6fb3ee commit fce231e

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

users/serializers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class CurrentUserSerializer(serializers.ModelSerializer):
6363
"""
6464
User serializer for the currently logged in user
6565
"""
66+
6667
profile_image = serializers.ImageField(
6768
validators=[downscale_image_file_size_validator]
6869
)

users/views.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,13 @@ def get_v3_context_data(self, **kwargs):
173173
# Data shared between both versions, Boost Github and Mailing List activity
174174
ctx["github_activity_card_data"] = {
175175
"title": "Latest Boost Github activity",
176-
"markdown_text": dedent(
177-
"""
176+
"markdown_text": dedent("""
178177
* Created 24 Commits in [**7 repositories**](https://www.example.com)
179178
* Created [**1 repository**](https://www.example.com)
180179
* Created a pull request in [**cppalliance/buffers**](https://www.example.com) that received 6 comments
181180
* Opened 17 other pull requests in [**6 repositories**](https://www.example.com)
182181
* Reviewed 3 pull requests in [**3 repositories**](https://www.example.com)
183-
"""
184-
),
182+
"""),
185183
"button_url": "https://www.github.com",
186184
"button_label": "View on Github",
187185
}
@@ -217,8 +215,7 @@ def get_v3_context_data(self, **kwargs):
217215
}
218216

219217
if self.request.GET.get("filled"):
220-
ctx["bio"] = dedent(
221-
"""
218+
ctx["bio"] = dedent("""
222219
**Professional Profile**
223220
224221
I am a software engineer and C++ expert with extensive experience in systems programming and open-source software development. My work focuses on advancing the C++ ecosystem through libraries, tools, and community leadership.
@@ -242,8 +239,7 @@ def get_v3_context_data(self, **kwargs):
242239
* Network Programming: High-performance asynchronous networking solutions in C++
243240
244241
These interests have shaped my contributions to the C++ ecosystem, particularly in developing libraries that make network programming more accessible and efficient for developers.
245-
"""
246-
)
242+
""")
247243
ctx["contributor_data"] = {
248244
"Author": ["Beast", "JSON"],
249245
"Maintainer": ["Beast", "Accumulator"],

0 commit comments

Comments
 (0)