Skip to content

Commit 2b881e2

Browse files
authored
fix linting according to ruff (#1)
* fix linting according to ruff
1 parent f6c0000 commit 2b881e2

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

tap_looker/client.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
"""Custom client handling, including LookerStream base class."""
22

33
from __future__ import annotations
4-
from enum import Enum
4+
55
import json
66
import os
77
import typing as t
88
from datetime import datetime
9+
from enum import Enum
910
from pathlib import Path
1011

1112
import looker_sdk
@@ -23,7 +24,8 @@
2324
class LookerStream(Stream):
2425
"""Stream class for Looker streams."""
2526

26-
def __init__(self, tap: Tap):
27+
def __init__(self, tap: Tap) -> None:
28+
"""Initialize the stream object."""
2729
super().__init__(tap)
2830
os.environ["LOOKERSDK_BASE_URL"] = self.config.get("base_url")
2931
os.environ["LOOKERSDK_CLIENT_ID"] = self.config.get("client_id")
@@ -40,6 +42,7 @@ def schema_filepath(self) -> Path | None:
4042
return SCHEMAS_DIR / f"{self.name}.json"
4143

4244
def convert_to_dict(self, obj: object) -> dict:
45+
"""Convert object to dictionary."""
4346
if isinstance(obj, Enum):
4447
return obj.value
4548
if isinstance(obj, list):
@@ -52,12 +55,15 @@ def convert_to_dict(self, obj: object) -> dict:
5255

5356

5457
class LookerSystemActivityStream(LookerStream):
55-
def __init__(self, tap: Tap):
58+
"""Stream class for Looker System Activity streams."""
59+
def __init__(self, tap: Tap) -> None:
60+
"""Initialize the stream object."""
5661
super().__init__(tap)
5762
self.replication_key = f"{self.name}_created_time"
5863
self.primary_keys = [f"{self.name}_id"]
5964

6065
def replace_prefix(self, field: str) -> str:
66+
"""Replace the prefix of a field name."""
6167
return field.replace(f"{self.name}_", f"{self.name}.")
6268

6369
def get_records(

0 commit comments

Comments
 (0)