Bea Steers

Results 58 comments of Bea Steers

Great! I'll submit a PR! And thanks for the explanation, that makes sense. I was having some trouble with load order so I think that'll be the one thing we...

Well it could be as straight forward as: ```python In [1]: class Config(dict): ...: def __getattr__(self, *a, **kw): ...: return self.__getitem__(*a, **kw) ...: In [2]: cfg = Config() In [3]:...

as an update - I recently started using confuse more extensively on a project and I realized that you can do: ```python cfg = config.get({ 'data_root': confuse.Filename(), 'upload': { 'server':...

Yeah! I came across it in https://github.com/beetbox/confuse/blob/master/example/__init__.py honestly I feel like this should be the recommended interface. Especially because it does all of the validation once at the top and...

@fasmide is there an upstream issue for this that we could follow?

I would have, except `shell.prompt_reboot()` doesn't let you pass `force_arg` so it's not fully interactive (even if that doesn't affect my use case). see: https://github.com/adafruit/Adafruit_Python_Shell/blob/master/adafruit_shell.py#L493-L501 If you're open to changes...

>Is there anything else in this PR that needs high-level commentary before i dig in for a proper CR? I don't think so? Let me know if things need clarification

I divided it into separate commits after getting low-key shamed during the marl meeting. 😝 (Justin has told me that I should squash commits when contributing. my bad)

One thing I want to add is a `static` parameter which will return a single value for the entire annotation. This would be useful to extract the background source_file for...

It'd also be good to be able to gather arbitrary sandbox data as well. I'm not sure if this fits in the scope of this transformer or if it'd be...