aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2024-03-10 03:12:54 +0800
committer简律纯 <i@jyunko.cn>2024-03-10 03:12:54 +0800
commit18731dbca0808b872d624f35f6203337830b2593 (patch)
treef6b28e92ca45f53efe995406a47a97f9c53d7136
parent43c3007372268e174ccd7fd60d788e11e27df6b2 (diff)
downloadipm-18731dbca0808b872d624f35f6203337830b2593.tar.gz
ipm-18731dbca0808b872d624f35f6203337830b2593.zip
fix(toml_file): initialize array
-rw-r--r--src/ipm/project/toml_file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipm/project/toml_file.py b/src/ipm/project/toml_file.py
index 43725f7..e0738c8 100644
--- a/src/ipm/project/toml_file.py
+++ b/src/ipm/project/toml_file.py
@@ -126,7 +126,7 @@ def init_pyproject(
license_table = tomlkit.inline_table()
license_table.update({"text": license})
project.add("license", license_table)
- project.add("dependencies", tomlkit.array('[infini]'))
+ project.add("dependencies", tomlkit.array('["infini"]'))
project.add("requires-python", ">=3.8")
project.add("readme", "README.md")