keystone/keystone/receipt/__init__.py
Gage Hugo 870428e1bd Change __all__ list to tuple
Currently pep257 is throwing a warning for the pep8 check with
an error that __all__ is defined as a list instead of an
immutable tupel. This changes both instances of a list to a
tuple and the warning message is no longer emitted.

Change-Id: Ia7c3f0ad99ecf0e1db4ff4165beed0d0ef09bf58
2018-11-07 16:40:02 -06:00

21 lines
654 B
Python

# Copyright 2018 Catalyst Cloud Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from keystone.receipt import provider
__all__ = (
"provider",
)