We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5ffec commit 235882cCopy full SHA for 235882c
lib/fdiff/diff.py
@@ -1,6 +1,7 @@
1
#!/usr/bin/env python3
2
3
import asyncio
4
+from difflib import unified_diff
5
import os
6
from multiprocessing import Pool, cpu_count
7
import shlex
@@ -14,7 +15,7 @@
14
15
_get_filepath_from_url,
16
create_async_get_request_session_and_run,
17
)
-from fdiff.thirdparty.fdifflib import unified_diff
18
+
19
from fdiff.utils import get_file_modtime
20
21
@@ -23,7 +24,6 @@
23
24
# Private functions
25
#
26
-# TODO: add docstrings for all private functions
27
28
29
def _async_fetch_files(dirpath, urls):
0 commit comments