File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 1
1
"""Models for the builds app."""
2
+
2
3
import datetime
3
4
import os .path
4
5
import re
85
86
86
87
87
88
class Version (TimeStampedModel ):
88
-
89
89
"""Version of a ``Project``."""
90
90
91
91
project = models .ForeignKey (
@@ -567,7 +567,6 @@ def get_storage_paths(self, version_slug=None):
567
567
568
568
569
569
class APIVersion (Version ):
570
-
571
570
"""
572
571
Version proxy model for API data deserialization.
573
572
@@ -1014,7 +1013,6 @@ def reset(self):
1014
1013
1015
1014
1016
1015
class BuildCommandResultMixin :
1017
-
1018
1016
"""
1019
1017
Mixin for common command result methods/properties.
1020
1018
@@ -1038,7 +1036,6 @@ def failed(self):
1038
1036
1039
1037
1040
1038
class BuildCommandResult (BuildCommandResultMixin , models .Model ):
1041
-
1042
1039
"""Build command for a ``Build``."""
1043
1040
1044
1041
build = models .ForeignKey (
@@ -1071,7 +1068,6 @@ def run_time(self):
1071
1068
1072
1069
1073
1070
class VersionAutomationRule (PolymorphicModel , TimeStampedModel ):
1074
-
1075
1071
"""Versions automation rules for projects."""
1076
1072
1077
1073
ACTIVATE_VERSION_ACTION = "activate-version"
You can’t perform that action at this time.
0 commit comments