high-yak-85899
11/13/2023, 8:54 PM2.17.1
. I didn't see any mention of it in the release notes. Was that intended?
# BUILD file code
__defaults__(python_sources=dict(skip_yapf=True))
# produces
MappingError: Failed to parse ./some/path/to/BUILD.pants:
TypeError: set_defaults() got an unexpected keyword argument 'python_sources'
curved-television-6568
11/13/2023, 8:58 PM__defaults__(dict(python_sources=dict(skip_yapf=True)))
or, we usually use dict literals for the enclosing one:
__defaults__({python_sources: dict(skip_yapf=True)})
curved-television-6568
11/13/2023, 9:04 PM