Skip to content

Commit 4f64d9a

Browse files
committed
revert models spaces
1 parent 122dfb2 commit 4f64d9a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

readthedocs/builds/models.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Models for the builds app."""
2+
23
import datetime
34
import os.path
45
import re
@@ -85,7 +86,6 @@
8586

8687

8788
class Version(TimeStampedModel):
88-
8989
"""Version of a ``Project``."""
9090

9191
project = models.ForeignKey(
@@ -567,7 +567,6 @@ def get_storage_paths(self, version_slug=None):
567567

568568

569569
class APIVersion(Version):
570-
571570
"""
572571
Version proxy model for API data deserialization.
573572
@@ -1014,7 +1013,6 @@ def reset(self):
10141013

10151014

10161015
class BuildCommandResultMixin:
1017-
10181016
"""
10191017
Mixin for common command result methods/properties.
10201018
@@ -1038,7 +1036,6 @@ def failed(self):
10381036

10391037

10401038
class BuildCommandResult(BuildCommandResultMixin, models.Model):
1041-
10421039
"""Build command for a ``Build``."""
10431040

10441041
build = models.ForeignKey(
@@ -1071,7 +1068,6 @@ def run_time(self):
10711068

10721069

10731070
class VersionAutomationRule(PolymorphicModel, TimeStampedModel):
1074-
10751071
"""Versions automation rules for projects."""
10761072

10771073
ACTIVATE_VERSION_ACTION = "activate-version"

0 commit comments

Comments
 (0)