Skip to content

Commit 23a2556

Browse files
fix: resolve formatting and linting issues
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent 4b132d9 commit 23a2556

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

airbyte/http_caching/cache.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import threading
99
import time
1010
from pathlib import Path
11-
from typing import Optional
1211

1312
from mitmproxy import options
1413
from mitmproxy.tools.dump import DumpMaster
@@ -98,12 +97,12 @@ def start(self) -> int:
9897
def run_proxy() -> None:
9998
loop = asyncio.new_event_loop()
10099
asyncio.set_event_loop(loop)
101-
100+
102101
try:
103102
proxy = DumpMaster(opts)
104103
self._proxy = proxy
105104
proxy.addons.add(addon)
106-
105+
107106
loop.run_until_complete(proxy.run())
108107
except Exception:
109108
logger.exception("Error running proxy")

examples/run_pokeapi_cached.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,25 @@
3030
try:
3131
port = cache.start()
3232
print(f"HTTP cache started on port {port}")
33-
33+
3434
source = get_source(
3535
"source-pokeapi",
3636
config={"pokemon_name": "bulbasaur"},
3737
source_manifest=True,
3838
http_cache=cache,
3939
streams=["pokemon"],
4040
)
41-
41+
4242
print("Checking source connection...")
4343
source.check()
4444
print("Source connection successful")
45-
45+
4646
local_cache = ab.new_local_cache("poke")
47-
47+
4848
print("Reading data from source...")
4949
source.read(cache=local_cache)
5050
print("Data read successfully")
51-
51+
5252
finally:
5353
print("Stopping HTTP cache...")
5454
cache.stop()

0 commit comments

Comments
 (0)