Run black on moto & test directories.

This commit is contained in:
Asher Foa 2019-10-31 08:44:26 -07:00
commit 96e5b1993d
507 changed files with 52541 additions and 47814 deletions

View file

@ -3,7 +3,11 @@ from __future__ import unicode_literals
import sure # noqa
from freezegun import freeze_time
from moto.core.utils import camelcase_to_underscores, underscores_to_camelcase, unix_time
from moto.core.utils import (
camelcase_to_underscores,
underscores_to_camelcase,
unix_time,
)
def test_camelcase_to_underscores():
@ -18,9 +22,7 @@ def test_camelcase_to_underscores():
def test_underscores_to_camelcase():
cases = {
"the_new_attribute": "theNewAttribute",
}
cases = {"the_new_attribute": "theNewAttribute"}
for arg, expected in cases.items():
underscores_to_camelcase(arg).should.equal(expected)