Skip to content

Commit

Permalink
remove redundant type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
elay committed Jun 12, 2024
1 parent fe6bbcc commit f3d56e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcfuncs/ipban/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def __init__(
logs_query_client: LogsQueryClient,
table_client: TableClient,
) -> None:
self.log_query_client: LogsQueryClient = logs_query_client
self.table_client: TableClient = table_client
self.log_query_client = logs_query_client
self.table_client = table_client

def run(self) -> List[LogsTableRow]:
query_result: List[LogsTableRow] = self.get_blob_logs_query_result()
Expand Down

0 comments on commit f3d56e1

Please sign in to comment.