Skip to content

Commit

Permalink
Merge pull request #293 from irontable/develop
Browse files Browse the repository at this point in the history
don't use initialize to reload configs and re-add genie2 in Python client
  • Loading branch information
irontablee committed Jun 22, 2016
2 parents 77beb14 + 95b2127 commit 885ce59
Show file tree
Hide file tree
Showing 17 changed files with 3,945 additions and 34 deletions.
24 changes: 24 additions & 0 deletions genie-client/src/main/python/genie2/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"""
Copyright 2015 Netflix, Inc.
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.
"""
import os

__author__ = 'tgianos'

__all__ = []

for module in os.listdir(os.path.dirname(__file__)):
if module != '__init__.py' and module[-3:] == '.py':
__all__.append(module[:-3])

0 comments on commit 885ce59

Please sign in to comment.