Skip to content

Commit bfbcff0

Browse files
fix: resolve formatting issues with ruff
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent 229421c commit bfbcff0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/run_pokeapi_cached_fixed.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,29 +29,29 @@
2929
try:
3030
port = cache.start()
3131
print(f"HTTP cache started on port {port}")
32-
32+
3333
source = get_source(
3434
"source-pokeapi",
3535
config={"pokemon_name": "bulbasaur"},
3636
source_manifest=True,
3737
http_cache=cache,
3838
streams=["pokemon"],
3939
)
40-
40+
4141
print("Checking source connection...")
4242
source.check()
4343
print("Source connection successful")
44-
44+
4545
local_cache = ab.new_local_cache("poke")
46-
46+
4747
print("First run - making HTTP requests...")
4848
source.read(cache=local_cache)
4949
print("First run completed")
50-
50+
5151
print("Second run - should use cached responses...")
5252
source.read(cache=local_cache)
5353
print("Second run completed")
54-
54+
5555
finally:
5656
print("Stopping HTTP cache...")
5757
cache.stop()

0 commit comments

Comments
 (0)