diff options
author | Jakub Marcowski <chubercikbattle@gmail.com> | 2024-05-21 15:14:59 +0200 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-05-21 18:02:29 -0500 |
commit | d9f8ef68df1df8cf88d484fc22995f55a9c3f9aa (patch) | |
tree | 69f67b54e7fbb15be77877d5de8d3906fc41b882 /platform/SCsub | |
parent | aaa4560729bf0161deb71789b47eba5623893845 (diff) | |
download | redot-engine-d9f8ef68df1df8cf88d484fc22995f55a9c3f9aa.tar.gz |
Update pre-commit hooks configuration to use `ruff` instead of `black`
Diffstat (limited to 'platform/SCsub')
-rw-r--r-- | platform/SCsub | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/SCsub b/platform/SCsub index b24c189848..b07023efed 100644 --- a/platform/SCsub +++ b/platform/SCsub @@ -1,9 +1,10 @@ #!/usr/bin/env python -import methods from glob import glob from pathlib import Path +import methods + Import("env") env.platform_sources = [] |