Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Aug 23, 2021
1 parent 46d63ef commit c95224f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions readthedocs/organizations/tasks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""Organization's tasks related."""

import logging

from readthedocs.builds.models import Build
from readthedocs.worker import app


Expand All @@ -8,6 +11,7 @@

@app.task(queue='web')
def mark_organization_assets_not_cleaned(build_pk):
"""Mark an organization as `artifacts_cleaned=False`."""
try:
build = Build.objects.get(pk=build_pk)
except Build.DoesNotExist:
Expand Down

0 comments on commit c95224f

Please sign in to comment.