fix nitpicks

pull/17/head
Maxim Lobanov 4 years ago
parent 4ce7f7efbc
commit 5b7cb28e2e

@ -2,18 +2,8 @@
.SYNOPSIS
Check and return list of new available tool versions
.PARAMETER DistURL
Required parameter. Link to the json file included all available tool versions
.PARAMETER ManifestLink
Required parameter. Link to the the version-manifest.json file
.PARAMETER VersionFilterToInclude
Optional parameter. List of filters to include particular versions
.PARAMETER VersionFilterToExclude
Optional parameter. List of filters to exclude particular versions
.PARAMETER RetryIntervalSec
Optional parameter. Retry interval in seconds
.PARAMETER RetryCount
Optional parameter. Retry count
.PARAMETER ToolName
Required parameter. The name of tool for which parser is available (Node, Go, Python)
#>
param (

@ -41,7 +41,6 @@ class PythonVersionsParser: BaseVersionsParser {
switch ($Label) {
"a" { return "alpha" }
"b" { return "beta" }
"rc" { return "rc" }
}
return $Label

Loading…
Cancel
Save