mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-05 20:14:00 +00:00
9313a6c52c
This commit fixes the style issues introduced in b348a26
according to the output
from black and autopep8.
Details: https://deepsource.io/gh/GradienceTeam/Gradience/transform/468959f9-1d91-45d7-9f36-9658d67bfe62/
12 lines
347 B
Python
12 lines
347 B
Python
from jinja2 import Environment, FileSystemLoader
|
|
|
|
import os
|
|
|
|
|
|
def modify_colors(scss_path, output_path, **vars):
|
|
env = Environment(
|
|
loader=FileSystemLoader(os.path.dirname(scss_path)),
|
|
)
|
|
template = env.get_template("_colors.txt")
|
|
with open(output_path, "w", encoding="utf-8") as f:
|
|
f.write(template.render(**vars))
|