mirror of
https://github.com/sprockets/sprockets.clients.dynamodb.git
synced 2024-11-23 11:19:54 +00:00
Update travis, fix docstrings
This commit is contained in:
parent
06ea813b8f
commit
3e909eb2ba
3 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
sudo: reuired
|
sudo: required
|
||||||
services:
|
services:
|
||||||
- docker
|
- docker
|
||||||
language: python
|
language: python
|
||||||
|
|
|
@ -67,7 +67,7 @@ set -e
|
||||||
|
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
|
|
||||||
if test "$1" == 'shellinit'
|
if test "$1" = 'shellinit'
|
||||||
then
|
then
|
||||||
# just build the environment file from docker containers
|
# just build the environment file from docker containers
|
||||||
build_env_file build/test-environment
|
build_env_file build/test-environment
|
||||||
|
|
|
@ -734,7 +734,7 @@ class DynamoDB(object):
|
||||||
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
|
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
|
||||||
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
|
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
|
||||||
|
|
||||||
.. _GetItem: http://docs.aws.amazon.com/amazondynamodb/
|
.. _UpdateItem: http://docs.aws.amazon.com/amazondynamodb/
|
||||||
latest/APIReference/API_UpdateItem.html
|
latest/APIReference/API_UpdateItem.html
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -890,7 +890,7 @@ class DynamoDB(object):
|
||||||
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
|
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
|
||||||
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
|
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
|
||||||
|
|
||||||
.. _GetItem: http://docs.aws.amazon.com/amazondynamodb/
|
.. _DeleteItem: http://docs.aws.amazon.com/amazondynamodb/
|
||||||
latest/APIReference/API_DeleteItem.html
|
latest/APIReference/API_DeleteItem.html
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -916,7 +916,7 @@ class DynamoDB(object):
|
||||||
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
|
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
|
||||||
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
|
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
|
||||||
|
|
||||||
.. _GetItem: http://docs.aws.amazon.com/amazondynamodb/
|
.. _BatchGetItem: http://docs.aws.amazon.com/amazondynamodb/
|
||||||
latest/APIReference/API_BatchGetItem.html
|
latest/APIReference/API_BatchGetItem.html
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -942,7 +942,7 @@ class DynamoDB(object):
|
||||||
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
|
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
|
||||||
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
|
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
|
||||||
|
|
||||||
.. _GetItem: http://docs.aws.amazon.com/amazondynamodb/
|
.. _BatchWriteItem: http://docs.aws.amazon.com/amazondynamodb/
|
||||||
latest/APIReference/API_BatchWriteItem.html
|
latest/APIReference/API_BatchWriteItem.html
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue