File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
src/scrape_it_now/helpers Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 11from dotenv import find_dotenv , load_dotenv
22
3- load_dotenv (find_dotenv (
4- # Use the current working directory from where the command is run
5- usecwd = True ,
6- ))
3+ load_dotenv (
4+ find_dotenv (
5+ # Use the current working directory from where the command is run
6+ usecwd = True ,
7+ )
8+ )
Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ def dir_tests(sub: str) -> str:
1616 """
1717 Get the absolute path to the tests folder.
1818 """
19- return str (Path (__file__ ).parent .parent .parent .parent .joinpath ("tests" , sub ).absolute ())
19+ return str (
20+ Path (__file__ ).parent .parent .parent .parent .joinpath ("tests" , sub ).absolute ()
21+ )
2022
2123
2224def dir_resources (sub : str ) -> str :
2325 """
2426 Get the absolute path to the resources folder.
2527 """
26- return str (
27- Path (__file__ ).parent .parent .joinpath ("resources" , sub ).absolute ()
28- )
28+ return str (Path (__file__ ).parent .parent .joinpath ("resources" , sub ).absolute ())
2929
3030
3131def scrape_container_name (job_name : str ) -> str :
You can’t perform that action at this time.
0 commit comments