Nat1anWasTaken / Lava

Attribute defined outside __init__ PYL-W0201
Anti-pattern
Minor
1 occurrence in this check
Attribute 'track' defined outside __init__
16
17        first_track = result.tracks[0]  # Grab the first track from the results.
18        base64 = first_track.track  # Extract the base64 string from the track.
19        self.track = base64  # We'll store this for later, as it allows us to save making network requests20        # if this track is re-used (e.g. repeat).
21
22        return base64