Skip to content

Commit

Permalink
Moved s3 support to addons to prevent import at top level.
Browse files Browse the repository at this point in the history
Signed-off-by: Nicholas Cilfone <nicholas.cilfone@fmr.com>
  • Loading branch information
ncilfone committed May 5, 2021
1 parent 10d0ae7 commit 4a7f9a2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions spock/addons/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-

# Copyright 2019 FMR LLC <opensource@fidelity.com>
# SPDX-License-Identifier: Apache-2.0

"""
Spock is a framework that helps manage complex parameter configurations for Python applications
Please refer to the documentation provided in the README.md
"""
from spock.addons.s3.utils import S3Config

__all__ = ["s3", "S3Config"]

0 comments on commit 4a7f9a2

Please sign in to comment.