Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
waynehamadi committed Aug 16, 2023
1 parent 6b9a75f commit cd28930
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion agbenchmark/reports/ReportManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ def end_info_report(self, config: Dict[str, Any]) -> None:
"command": command.split(os.sep)[-1],
"benchmark_git_commit_sha": BENCHMARK_GIT_COMMIT_SHA,
"agent_git_commit_sha": AGENT_GIT_COMMIT_SHA,
"completion_time": datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%S+00:00"),
"completion_time": datetime.now(timezone.utc).strftime(
"%Y-%m-%dT%H:%M:%S+00:00"
),
"benchmark_start_time": BENCHMARK_START_TIME,
"metrics": {
"run_time": str(round(time.time() - self.start_time, 2)) + " seconds",
Expand Down
5 changes: 2 additions & 3 deletions send_to_googledrive.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import base64
import json
import os
import re

import gspread
import pandas as pd
from dotenv import load_dotenv
from oauth2client.service_account import ServiceAccountCredentials

import re

# Load environment variables from .env file
load_dotenv()

Expand Down Expand Up @@ -114,7 +113,7 @@ def process_test(
benchmark_start_time = data.get("benchmark_start_time", "")

# Check if benchmark_start_time complies with the required format
pattern = re.compile(r'\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\+00:00')
pattern = re.compile(r"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\+00:00")
if not pattern.fullmatch(benchmark_start_time):
continue # Skip processing this report if the date is not in the correct format
# Loop through each test
Expand Down

0 comments on commit cd28930

Please sign in to comment.