diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-12-05 06:47:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 06:47:34 +0000 |
commit | 14db8c8f10377607c85a7fe449af8001a64f088e (patch) | |
tree | 83d4e03e3790bb3c1e8ff94d78f83494c780ea71 /test/python | |
parent | 88e6591b09c84ea8ecd5a576e6c9c5dbe565819a (diff) | |
parent | 2a452853224e3a9a8a516c5e5b105b2738b6912f (diff) | |
download | ledger-14db8c8f10377607c85a7fe449af8001a64f088e.tar.gz ledger-14db8c8f10377607c85a7fe449af8001a64f088e.tar.bz2 ledger-14db8c8f10377607c85a7fe449af8001a64f088e.zip |
Merge pull request #2308 from afh/migrate-py-scripts
Migrate python scripts
Diffstat (limited to 'test/python')
-rw-r--r-- | test/python/JournalTest.py | 2 | ||||
-rw-r--r-- | test/python/PostingTest.py | 2 | ||||
-rw-r--r-- | test/python/TransactionTest.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/python/JournalTest.py b/test/python/JournalTest.py index 84ad2f43..59442968 100644 --- a/test/python/JournalTest.py +++ b/test/python/JournalTest.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +#!/usr/bin/env python3 import unittest diff --git a/test/python/PostingTest.py b/test/python/PostingTest.py index 0dd18112..f6b9bc04 100644 --- a/test/python/PostingTest.py +++ b/test/python/PostingTest.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +#!/usr/bin/env python3 import unittest import operator diff --git a/test/python/TransactionTest.py b/test/python/TransactionTest.py index c87f8c4b..12069389 100644 --- a/test/python/TransactionTest.py +++ b/test/python/TransactionTest.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +#!/usr/bin/env python3 import unittest import operator |