tgit 0.13.1__tar.gz → 0.13.2__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tgit
3
- Version: 0.13.1
3
+ Version: 0.13.2
4
4
  Summary: Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze.
5
5
  Author-email: Jannchie <jannchie@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tgit"
3
- version = "0.13.1"
3
+ version = "0.13.2"
4
4
  description = "Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze."
5
5
  authors = [{ name = "Jannchie", email = "jannchie@gmail.com" }]
6
6
  dependencies = [
@@ -1,4 +1,5 @@
1
1
  import argparse
2
+ import contextlib
2
3
  import importlib.metadata
3
4
  import threading
4
5
 
@@ -33,7 +34,8 @@ def main() -> None:
33
34
  args = parser.parse_args()
34
35
 
35
36
  def import_openai() -> None:
36
- import openai # noqa: F401
37
+ with contextlib.suppress(Exception):
38
+ import openai # noqa: F401
37
39
 
38
40
  threading.Thread(target=import_openai).start()
39
41
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes