mirror of
https://github.com/platomav/BIOSUtilities.git
synced 2025-05-13 06:34:42 -04:00
11 lines
No EOL
242 B
Python
11 lines
No EOL
242 B
Python
#!/usr/bin/env python3
|
|
#coding=utf-8
|
|
|
|
# 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 |