Skip to content

Commit

Permalink
fix pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jfuss committed Sep 4, 2019
1 parent 27c276e commit 547874b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions samcli/commands/local/invoke/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ def cli(
) # pragma: no cover


def do_cli(
def do_cli( # pylint: disable=R0914
ctx,
function_identifier,
template,
event,
no_event,
env_vars,
debug_port, # pylint: disable=R0914
debug_port,
debug_args,
debugger_path,
docker_volume_basedir,
Expand Down
4 changes: 2 additions & 2 deletions samcli/commands/local/start_api/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ def cli(
) # pragma: no cover


def do_cli(
def do_cli( # pylint: disable=R0914
ctx,
host,
port,
static_dir,
template,
env_vars,
debug_port,
debug_args, # pylint: disable=R0914
debug_args,
debugger_path,
docker_volume_basedir,
docker_network,
Expand Down
4 changes: 2 additions & 2 deletions samcli/commands/local/start_lambda/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ def cli(
) # pragma: no cover


def do_cli(
def do_cli( # pylint: disable=R0914
ctx,
host,
port,
template,
env_vars,
debug_port,
debug_args, # pylint: disable=R0914
debug_args,
debugger_path,
docker_volume_basedir,
docker_network,
Expand Down
4 changes: 2 additions & 2 deletions samcli/local/docker/lambda_build_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ class LambdaBuildContainer(Container):
_LAMBCI_IMAGE_REPO_NAME = "lambci/lambda"
_BUILDERS_EXECUTABLE = "lambda-builders"

def __init__(
self, # pylint: disable=too-many-locals
def __init__( # pylint: disable=too-many-locals
self,
protocol_version,
language,
dependency_manager,
Expand Down

0 comments on commit 547874b

Please sign in to comment.