Skip to content

Commit

Permalink
Release 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Apr 25, 2023
1 parent 6934fd7 commit 408c4ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[tool.poetry]
name = "fern-metriport"
version = "0.0.1"
version = "0.0.2"
description = ""
authors = []
packages = [
Expand All @@ -10,10 +10,10 @@ packages = [

[tool.poetry.dependencies]
python = "^3.7"
httpx = "0.23.3"
pydantic = "^1.9.2"
types-backports = "0.1.3"
backports-cached_property = "1.0.2"
httpx = "0.23.3"
types-backports = "0.1.3"

[tool.poetry.dev-dependencies]
mypy = "0.971"
Expand Down
4 changes: 2 additions & 2 deletions src/metriport/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .resources.document.client import AsyncDocumentClient, DocumentClient


class MetriportApi:
class Mercoa:
def __init__(self, *, environment: str, api_key: str):
self._environment = environment
self.api_key = api_key
Expand All @@ -15,7 +15,7 @@ def document(self) -> DocumentClient:
return DocumentClient(environment=self._environment, api_key=self.api_key)


class AsyncMetriportApi:
class AsyncMercoa:
def __init__(self, *, environment: str, api_key: str):
self._environment = environment
self.api_key = api_key
Expand Down

0 comments on commit 408c4ac

Please sign in to comment.