IP Availability: remove unused imports

Does a few cleanups to the commit 2f741ca5f9.

Change-Id: I65ba21cb81f2bd2f15f02b3982475074cfd75bda
This commit is contained in:
Gary Kotton 2016-03-01 07:06:10 -08:00
parent 2f741ca5f9
commit d521ba3c50
2 changed files with 0 additions and 7 deletions

View File

@ -18,9 +18,6 @@ import six
from sqlalchemy import func
import neutron.db.models_v2 as mod
import oslo_log.log as logging
LOG = logging.getLogger(__name__)
NETWORK_ID = 'network_id'
NETWORK_NAME = 'network_name'

View File

@ -13,15 +13,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import oslo_log.log as logging
import neutron.api.extensions as extensions
import neutron.api.v2.attributes as attr
import neutron.api.v2.base as base
import neutron.services.network_ip_availability.plugin as plugin
LOG = logging.getLogger(__name__)
RESOURCE_NAME = "network_ip_availability"
RESOURCE_PLURAL = "network_ip_availabilities"
COLLECTION_NAME = RESOURCE_PLURAL.replace('_', '-')