This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Description
Prerequisites
- [X ] Put an X between the brackets on this line if you have done all of the following:
Description
Python "self" does not have a css class and cannot be edited in styles.less. It is just "#text"
In fact, this is not working
.syntax--entity.syntax--name.syntax--function.syntax--self {
color: #268bd2;
}
.syntax--variable.syntax--language.syntax--self.syntax--python {
color: #268bd2;
}
Steps to Reproduce
Simply write a python class with attributes and inspect with developer tools.
You cannot reference "self" to edit the color in style.less
class Dog:
def init(self, name, age):
self.name = name
self.age = age
