Snowdrops - adventurer feedback

I’ve noticed a problem with the sample code (Python):

    row = cells["row"]
    col = cells["col"]

Should be (cells -> cell):

    row = cell["row"]
    col = cell["col"]

Or, ideally, using dot notation:

    row = cell.row
    col = cell.col

Leaving that alone, this is a pretty straightforward level. :thumbsup:

1 Like

Thx. Fixed.

It’s Python, you mix it with JS again :wink:

2 Likes

Right, I keep forgetting Python dictionary keys are not attributes. :sweat_smile:

Though, I’ll note that dot notation is incorrectly working to access dictionary keys. Looks like a bug in Filbert.

2 Likes