diff options
| author | 2024-03-10 03:12:54 +0800 | |
|---|---|---|
| committer | 2024-03-10 03:12:54 +0800 | |
| commit | 18731dbca0808b872d624f35f6203337830b2593 (patch) | |
| tree | f6b28e92ca45f53efe995406a47a97f9c53d7136 | |
| parent | 43c3007372268e174ccd7fd60d788e11e27df6b2 (diff) | |
| download | ipm-18731dbca0808b872d624f35f6203337830b2593.tar.gz ipm-18731dbca0808b872d624f35f6203337830b2593.zip | |
fix(toml_file): initialize array
| -rw-r--r-- | src/ipm/project/toml_file.py | 2 |
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") |
