Skip to content

Commit f87a3ea

Browse files
committed
quality: Code lint
1 parent e14dcf5 commit f87a3ea

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from 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+
)

‎src/scrape_it_now/helpers/resources.py‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

2224
def 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

3131
def scrape_container_name(job_name: str) -> str:

0 commit comments

Comments
 (0)