File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1717
1818import asyncio
1919import os
20- import pathlib
2120import socketserver
2221import sys
2322import threading
23+ from pathlib import Path
2424
2525sys .path [0 :0 ] = ["" ]
2626
3636 async_get_pool ,
3737 async_wait_until ,
3838 server_name_to_type ,
39- wait_until ,
4039)
4140from unittest .mock import patch
4241
6261
6362# Location of JSON test specifications.
6463if _IS_SYNC :
65- SDAM_PATH = os .path .join (pathlib . Path (__file__ ).resolve ().parent , "discovery_and_monitoring" )
64+ SDAM_PATH = os .path .join (Path (__file__ ).resolve ().parent , "discovery_and_monitoring" )
6665else :
6766 SDAM_PATH = os .path .join (
68- pathlib . Path (__file__ ).resolve ().parent .parent ,
67+ Path (__file__ ).resolve ().parent .parent ,
6968 "discovery_and_monitoring" ,
7069 )
7170
Original file line number Diff line number Diff line change 1717
1818import asyncio
1919import os
20- import pathlib
2120import socketserver
2221import sys
2322import threading
23+ from pathlib import Path
2424
2525sys .path [0 :0 ] = ["" ]
2626
6161
6262# Location of JSON test specifications.
6363if _IS_SYNC :
64- SDAM_PATH = os .path .join (pathlib . Path (__file__ ).resolve ().parent , "discovery_and_monitoring" )
64+ SDAM_PATH = os .path .join (Path (__file__ ).resolve ().parent , "discovery_and_monitoring" )
6565else :
6666 SDAM_PATH = os .path .join (
67- pathlib . Path (__file__ ).resolve ().parent .parent ,
67+ Path (__file__ ).resolve ().parent .parent ,
6868 "discovery_and_monitoring" ,
6969 )
7070
You can’t perform that action at this time.
0 commit comments