mirror of
https://github.com/bisq-network/bisq-api-reference.git
synced 2026-01-26 17:33:33 +00:00
Still not quite right. The IDE wants to remove the 'unused' import, and trying to append the sys.path able the 'import sepa_mm_bot' also makes the IDE unhappy.
6 lines
126 B
Python
6 lines
126 B
Python
import os
|
|
import sys
|
|
|
|
DIR_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.append(os.path.join(DIR_PATH, 'events'))
|