Skip to content

Commit

Permalink
Use empty dictionary instead of None for kwargs (#244)
Browse files Browse the repository at this point in the history
Fixes #243
  • Loading branch information
vitalyd authored and mfarrugi committed Jul 23, 2019
1 parent c06ab74 commit 949b5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/private/rustc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def _get_linker_and_args(ctx, rpaths):
"ctx": ctx,
} if len(BAZEL_VERSION) == 0 or versions.is_at_least(
"0.25.0", BAZEL_VERSION
) else None
) else {}
feature_configuration = cc_common.configure_features(
cc_toolchain = cc_toolchain,
requested_features = ctx.features,
Expand Down

0 comments on commit 949b5d6

Please sign in to comment.