Skip to content

Commit faa6136

Browse files
Potential fix for pull request finding 'Unused local variable'
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
1 parent 214da3e commit faa6136

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_boot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def boot_test() -> None:
1010
""" Profile the cost of initial module imports and client instantiation. """
1111
# Importing inside the function ensures we capture the disk-crawling overhead
1212
from mailjet_rest.client import Client
13-
client = Client(auth=("api_key", "api_secret"))
13+
Client(auth=("api_key", "api_secret"))
1414

1515
if __name__ == "__main__":
1616
profiler = cProfile.Profile()

0 commit comments

Comments
 (0)