Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cirro/api/auth/oauth_client.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from io import StringIO
import json
import logging
import sys
import threading
import time
from datetime import datetime, timedelta
from io import StringIO
from pathlib import Path
from typing import Optional

Expand Down Expand Up @@ -92,7 +92,7 @@ def __init__(
client_id: str,
region: str,
auth_endpoint: str,
enable_cache=True,
enable_cache=False,
auth_io: Optional[StringIO] = None
):
self.client_id = client_id
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cirro"
version = "0.7.3"
version = "0.7.4"
description = "CLI tool and SDK for interacting with the Cirro platform"
authors = ["Cirro Bio <[email protected]>"]
license = "MIT"
Expand Down