Skip to content

Commit c7d9a22

Browse files
committed
fix: resolve linting issues
- Remove unused imports (os, Any) - Remove trailing whitespace - Remove whitespace from blank lines
1 parent 2b222d4 commit c7d9a22

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

examples/test_examples.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import importlib.util
2-
import os
32
import sys
43
from pathlib import Path
5-
from typing import Any
64

75
import pytest
86
import responses
@@ -68,8 +66,8 @@ def test_run_example(example_file: str) -> None:
6866
},
6967
status=200
7068
)
71-
72-
# Mock document upload endpoint
69+
70+
# Mock document upload endpoint
7371
responses.add(
7472
responses.POST,
7573
"https://api.stackone.com/unified/hris/employees/c28xIQaWQ6MzM5MzczMDA2NzMzMzkwNzIwNA/documents/upload",
@@ -78,7 +76,7 @@ def test_run_example(example_file: str) -> None:
7876
)
7977

8078
example_path = Path(__file__).parent / example_file
81-
79+
8280
# Import and run the example module directly
8381
spec = importlib.util.spec_from_file_location("example", example_path)
8482
if spec and spec.loader:

0 commit comments

Comments
 (0)