Remove git type codeblocks (unless specified)

For example:

import os

+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(file)))
+
+# Create subfolders for data and logs
+DATA_DIR = os.path.join(BASE_DIR, “data”)
+LOG_DIR = os.path.join(BASE_DIR, “logs”)
+
+# Ensure folders exist
+os.makedirs(DATA_DIR, exist_ok=True)
+os.makedirs(LOG_DIR, exist_ok=True)

BOT_CONFIG = {
“API_KEY”: os.environ.get(“BINANCE_API_KEY”, “redacted”),
“API_SECRET”: os.environ.get(“BINANCE_API_SECRET”, “redacted”),
“BASE_URL”: “https://api.binance.us”,
“SYMBOL”: “BTCUSDT”,
“FAIL_SAFE_DROP_PERCENT”: 2.25,
“TRAILING_STOP_DISTANCE”: 1.0,
“TEST_MODE”: True,
}

-# Paths for local CSV files
-HISTORICAL_DATA_FILE = “historical_data.csv”
-PROCESSED_DATA_FILE = “processed_data.csv”
+# Revised paths under data/
+HISTORICAL_DATA_FILE = os.path.join(DATA_DIR, “historical_data.csv”)
+PROCESSED_DATA_FILE = os.path.join(DATA_DIR, “processed_data.csv”)

RISK_DROP_THRESHOLD = -2.25 # percent drop per hour
POSITION_SIZES = {
“BULL”: 2,
“BEAR”: 2,
“SIDEWAYS”: 0.5,
“NEUTRAL”: 1
}

++ are green in replies and - are red, i would format it here if I could.

I’m noticing this type of git styling lately in responses with code blocks as type ‘diff’ which means no copy pasting and having to ask for another reply if I want to copy paste which is a big waste of tokens. I believe these git styles ‘diff’ types of responses should only occur if specifically asking for git styling.