auto-coder-web 0.1.83__py3-none-any.whl → 0.1.84__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,9 +23,7 @@ def init_project(project_path: str):
23
23
 
24
24
  # 生成 .autocoderignore 文件,采用 .gitignore 格式
25
25
  autocoderignore_path = os.path.join(source_dir, ".autocoderignore")
26
- autocoderignore_content = (
27
- "target\n"
28
- )
26
+ autocoderignore_content = "target\n"
29
27
  with open(autocoderignore_path, "w", encoding="utf-8") as f:
30
28
  f.write(autocoderignore_content)
31
29
 
auto_coder_web/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.1.83"
1
+ __version__ = "0.1.84"