Skip to content

Files

Latest commit

 

History

History
21 lines (13 loc) · 394 Bytes

Style-RedundantDoubleSplatHashBraces.md

File metadata and controls

21 lines (13 loc) · 394 Bytes

Pattern: Redundant double splat hash braces

Issue: -

Description

Checks for redundant uses of double splat hash braces.

Examples

# bad
do_something(**{foo: bar, baz: qux})

# good
do_something(foo: bar, baz: qux)

Further Reading