Files @ fa35a70f9fe1
Branch filter:

Location: NPO-Accounting/import2ledger/tests/__init__.py

Brett Smith
CODE: Update main loop to reflect the template change in 34b71ba.
1
2
3
4
5
6
7
import pathlib
import re

DATA_DIR = pathlib.Path(__file__).with_name('data')

def normalize_whitespace(s):
    return re.sub(r'(\t| {3,})', '  ', s)