Skip to content

Commit 0a33bdf

Browse files
committed
Lint main.py
1 parent 6b1f425 commit 0a33bdf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,14 @@ def get_and_update_historic_usage(
164164
os.makedirs("local_data", exist_ok=True)
165165
with open(local_path, "w", encoding="utf-8") as f:
166166
json.dump(historic_usage, f, indent=4)
167-
logger.info(
168-
"Historic usage data written locally to %s (S3 skipped)", local_path
169-
)
167+
logger.info("Historic usage data written locally to %s (S3 skipped)", local_path)
170168

171169
return historic_usage, dates_added
172170

173171

174-
def get_and_update_copilot_teams(s3: boto3.client, gh: github_api_toolkit.github_interface, write_data_locally: bool) -> list:
172+
def get_and_update_copilot_teams(
173+
s3: boto3.client, gh: github_api_toolkit.github_interface, write_data_locally: bool
174+
) -> list:
175175
"""Get and update GitHub Teams with Copilot Data.
176176
177177
Args:

0 commit comments

Comments
 (0)