BIOSUtilities/common/externals.py
platomav a2eca0aac6 Revamped path-related operations
Fixed dependencies detecton

Fixed frozen state support
2022-04-17 20:48:43 +03:00

15 lines
289 B
Python

#!/usr/bin/env python3
#coding=utf-8
"""
Copyright (C) 2022 Plato Mavropoulos
"""
# https://github.com/allowitsme/big-tool by Dmitry Frolov
def get_bgs_tool():
try:
from external.big_script_tool import BigScript
except:
BigScript = None
return BigScript