From: parmentelat Date: Fri, 4 May 2018 09:31:46 +0000 (+0200) Subject: harmless changes by atom and for pylint X-Git-Tag: sfa-4.0-2~12^2~4 X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=commitdiff_plain;h=8c36c18576dc540cfc3b43ff4a676a4993f7abca harmless changes by atom and for pylint --- diff --git a/sfa/managers/aggregate_manager.py b/sfa/managers/aggregate_manager.py index a8c3af4b..6b13f0fd 100644 --- a/sfa/managers/aggregate_manager.py +++ b/sfa/managers/aggregate_manager.py @@ -1,4 +1,5 @@ -import socket +# pylint: disable=c0111, c0103, r0201 + from sfa.rspecs.version_manager import VersionManager from sfa.util.version import version_core from sfa.util.xrn import Xrn @@ -10,7 +11,8 @@ from sfa.server.api_versions import ApiVersions class AggregateManager: - def __init__(self, config): pass + def __init__(self, config): + pass # essentially a union of the core version, the generic version (this code) and # whatever the driver needs to expose @@ -127,7 +129,7 @@ class AggregateManager: def Allocate(self, api, xrn, creds, rspec_string, expiration, options): """ - Allocate resources as described in a request RSpec argument + Allocate resources as described in a request RSpec argument to a slice with the named URN. """ call_id = options.get('call_id') @@ -137,7 +139,7 @@ class AggregateManager: def Provision(self, api, xrns, creds, options): """ - Create the sliver[s] (slice) at this aggregate. + Create the sliver[s] (slice) at this aggregate. Verify HRN and initialize the slice record in PLC if necessary. """ call_id = options.get('call_id')