Skip to content

Commit

Permalink
Merge pull request #60 from rohankishore/main
Browse files Browse the repository at this point in the history
Update __init__.py [Git]
  • Loading branch information
tomlin7 authored Jul 7, 2023
2 parents 820c79c + 3bf8540 commit 7987bb2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions biscuit/core/components/git/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import git

from .repo import GitRepo
from tkinter import messagebox
try:
import git
from .repo import GitRepo
except ImportError:
messagebox.showerror("Git not found", "Git is not installed on your PC. Install Git and add Git to the PATH to use Biscuit")


class Git(git.Git):
Expand Down

0 comments on commit 7987bb2

Please sign in to comment.