Skip to content

Commit 50b461b

Browse files
committed
Fixxup newline style
1 parent 2b6f32e commit 50b461b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

sdk/batch/azure-batch/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Release History
22

33
## 9.0.0 (2020-03-24)
4+
45
### Features
56
- Added ability to encrypt `ComputeNode` disk drives using the new `disk_encryption_configuration` property of `VirtualMachineConfiguration`.
67
- **[Breaking]** The `virtual_machine_id` property of `ImageReference` can now only refer to a Shared Image Gallery image.

sdk/batch/azure-batch/azure/batch/models/_paged_models.py

+11-12
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class ApplicationSummaryPaged(Paged):
2323
}
2424

2525
def __init__(self, *args, **kwargs):
26-
2726
super(ApplicationSummaryPaged, self).__init__(*args, **kwargs)
27+
2828
class PoolUsageMetricsPaged(Paged):
2929
"""
3030
A paging container for iterating over a list of :class:`PoolUsageMetrics <azure.batch.models.PoolUsageMetrics>` object
@@ -36,8 +36,8 @@ class PoolUsageMetricsPaged(Paged):
3636
}
3737

3838
def __init__(self, *args, **kwargs):
39-
4039
super(PoolUsageMetricsPaged, self).__init__(*args, **kwargs)
40+
4141
class CloudPoolPaged(Paged):
4242
"""
4343
A paging container for iterating over a list of :class:`CloudPool <azure.batch.models.CloudPool>` object
@@ -49,8 +49,8 @@ class CloudPoolPaged(Paged):
4949
}
5050

5151
def __init__(self, *args, **kwargs):
52-
5352
super(CloudPoolPaged, self).__init__(*args, **kwargs)
53+
5454
class ImageInformationPaged(Paged):
5555
"""
5656
A paging container for iterating over a list of :class:`ImageInformation <azure.batch.models.ImageInformation>` object
@@ -62,8 +62,8 @@ class ImageInformationPaged(Paged):
6262
}
6363

6464
def __init__(self, *args, **kwargs):
65-
6665
super(ImageInformationPaged, self).__init__(*args, **kwargs)
66+
6767
class PoolNodeCountsPaged(Paged):
6868
"""
6969
A paging container for iterating over a list of :class:`PoolNodeCounts <azure.batch.models.PoolNodeCounts>` object
@@ -75,8 +75,8 @@ class PoolNodeCountsPaged(Paged):
7575
}
7676

7777
def __init__(self, *args, **kwargs):
78-
7978
super(PoolNodeCountsPaged, self).__init__(*args, **kwargs)
79+
8080
class CloudJobPaged(Paged):
8181
"""
8282
A paging container for iterating over a list of :class:`CloudJob <azure.batch.models.CloudJob>` object
@@ -88,8 +88,8 @@ class CloudJobPaged(Paged):
8888
}
8989

9090
def __init__(self, *args, **kwargs):
91-
9291
super(CloudJobPaged, self).__init__(*args, **kwargs)
92+
9393
class JobPreparationAndReleaseTaskExecutionInformationPaged(Paged):
9494
"""
9595
A paging container for iterating over a list of :class:`JobPreparationAndReleaseTaskExecutionInformation <azure.batch.models.JobPreparationAndReleaseTaskExecutionInformation>` object
@@ -101,8 +101,8 @@ class JobPreparationAndReleaseTaskExecutionInformationPaged(Paged):
101101
}
102102

103103
def __init__(self, *args, **kwargs):
104-
105104
super(JobPreparationAndReleaseTaskExecutionInformationPaged, self).__init__(*args, **kwargs)
105+
106106
class CertificatePaged(Paged):
107107
"""
108108
A paging container for iterating over a list of :class:`Certificate <azure.batch.models.Certificate>` object
@@ -114,8 +114,8 @@ class CertificatePaged(Paged):
114114
}
115115

116116
def __init__(self, *args, **kwargs):
117-
118117
super(CertificatePaged, self).__init__(*args, **kwargs)
118+
119119
class NodeFilePaged(Paged):
120120
"""
121121
A paging container for iterating over a list of :class:`NodeFile <azure.batch.models.NodeFile>` object
@@ -127,8 +127,8 @@ class NodeFilePaged(Paged):
127127
}
128128

129129
def __init__(self, *args, **kwargs):
130-
131130
super(NodeFilePaged, self).__init__(*args, **kwargs)
131+
132132
class CloudJobSchedulePaged(Paged):
133133
"""
134134
A paging container for iterating over a list of :class:`CloudJobSchedule <azure.batch.models.CloudJobSchedule>` object
@@ -140,8 +140,8 @@ class CloudJobSchedulePaged(Paged):
140140
}
141141

142142
def __init__(self, *args, **kwargs):
143-
144143
super(CloudJobSchedulePaged, self).__init__(*args, **kwargs)
144+
145145
class CloudTaskPaged(Paged):
146146
"""
147147
A paging container for iterating over a list of :class:`CloudTask <azure.batch.models.CloudTask>` object
@@ -153,8 +153,8 @@ class CloudTaskPaged(Paged):
153153
}
154154

155155
def __init__(self, *args, **kwargs):
156-
157156
super(CloudTaskPaged, self).__init__(*args, **kwargs)
157+
158158
class ComputeNodePaged(Paged):
159159
"""
160160
A paging container for iterating over a list of :class:`ComputeNode <azure.batch.models.ComputeNode>` object
@@ -166,5 +166,4 @@ class ComputeNodePaged(Paged):
166166
}
167167

168168
def __init__(self, *args, **kwargs):
169-
170169
super(ComputeNodePaged, self).__init__(*args, **kwargs)

0 commit comments

Comments
 (0)