Skip to content

Commit

Permalink
One import per line in makedep.py
Browse files Browse the repository at this point in the history
Accidentally reverted this code cleanup that was introduced in 2c5842c
  • Loading branch information
mnlevy1981 committed May 10, 2019
1 parent ce75e37 commit 29449dc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/shared/makedep.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
# Read in every file in $SRC_DIR and $SRC_DIR2 (arguments 3 and 4)
# Only depend on modules located in $SRC_DIR or $SRC_DIR2

import os, sys, re, logging
import os
import sys
import re
import logging
logger = logging.getLogger(__name__)
logging.basicConfig(format='(makedep.py): %(message)s', level=logging.INFO)

Expand Down

0 comments on commit 29449dc

Please sign in to comment.