Arrange modules in standardized ordering

This commit is contained in:
Debanjum Singh Solanky
2021-08-17 03:59:58 -07:00
parent 569e30b1c8
commit a3a1100be9
3 changed files with 22 additions and 8 deletions

View File

@@ -1,14 +1,16 @@
#!/usr/bin/env python3
# Import Modules
from processor.org_mode import orgnode
from utils.helpers import get_absolute_path, is_none_or_empty
# Standard Packages
import json
import argparse
import pathlib
import glob
import gzip
# Internal Packages
from processor.org_mode import orgnode
from utils.helpers import get_absolute_path, is_none_or_empty
# Define Functions
def org_to_jsonl(org_files, org_file_filter, output_file, verbose=0):