Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

Commit

Permalink
pass importerror
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio committed Jul 1, 2023
1 parent c60a1d8 commit f99a0b4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/revChatGPT/V1.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
from functools import wraps
from os import environ
from os import getenv
from os import startfile

try:
from os import startfile
except ImportError:
pass
from pathlib import Path
from typing import AsyncGenerator
from typing import Generator
Expand Down

0 comments on commit f99a0b4

Please sign in to comment.