sisoe24 / Python-Easy-Print

Found single char variable name JS-C1002
Anti-pattern
Minor
2 months ago7 months old
Variable name is too small
176        // when no placeholders are present, we need to replace the {@} with a space
177        const replaceToken = placeholders ? "{@}" : "{@} ";
178
179        let s = this.statement180            .replace(replaceToken, placeholders)181            .replace("{symbol}", this.data.getSymbol());182
183        if (this.data.config.get("prints.printToNewLine")) {
184            s = s.split(":'").join(":\\n'");
Variable name is too small
151    }
152
153    private convertLog(): string {
154        let s = this.statement.replace("{logger}", this.data.getLogger());155
156        if (this.data.config.get("logging.useRepr")) {
157            s = s.replace("{#text}", "repr({text})");