Removed external dependency
This commit is contained in:
parent
c08c02c448
commit
a815289d2e
@ -9,7 +9,6 @@ import re
|
|||||||
import shutil
|
import shutil
|
||||||
import pprint
|
import pprint
|
||||||
import difflib
|
import difflib
|
||||||
from sortedcontainers import SortedSet
|
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from betools import CmdLine, visitDir, ruler, head
|
from betools import CmdLine, visitDir, ruler, head
|
||||||
|
|
||||||
@ -85,8 +84,8 @@ def compareWithGithub(shortForm=True):
|
|||||||
if duplicates:
|
if duplicates:
|
||||||
print("duplicates = ", duplicates)
|
print("duplicates = ", duplicates)
|
||||||
|
|
||||||
githubfiles = SortedSet(githubfiles)
|
githubfiles = set(githubfiles)
|
||||||
destfiles = SortedSet(destfiles)
|
destfiles = set(destfiles)
|
||||||
|
|
||||||
runOutput = re.compile("/\* Output:.*///:~", re.DOTALL)
|
runOutput = re.compile("/\* Output:.*///:~", re.DOTALL)
|
||||||
differ = difflib.Differ()
|
differ = difflib.Differ()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user