Skip to content

Commit

Permalink
Refactor(pyache): remove __pyache__ from the file
Browse files Browse the repository at this point in the history
  • Loading branch information
MoMo2Win committed Nov 24, 2024
1 parent f225859 commit 4c6b80e
Show file tree
Hide file tree
Showing 25 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion example/list_clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def main():
response = client.clients.list_clients()
print(response.json())

response = client.clients.create_client(name="nerd")
response = client.clients.create_client(name="dock")

print(f"Created user with the ID of {response.data.client_id}")

Expand All @@ -18,5 +18,7 @@ def main():
response = client.clients.list_clients()
print(response.json())



if __name__ == "__main__":
main()
Binary file removed myfinances/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Binary file removed myfinances/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file removed myfinances/__pycache__/base_service.cpython-312.pyc
Binary file not shown.
Binary file removed myfinances/__pycache__/client.cpython-312.pyc
Binary file not shown.
Binary file removed myfinances/__pycache__/main.cpython-311.pyc
Binary file not shown.
Binary file removed myfinances/__pycache__/models.cpython-312.pyc
Binary file not shown.
Binary file removed myfinances/clients/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed myfinances/finance/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion myfinances/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class Meta(BaseModel):
success: bool
status_code: int
content: dict = None
content: Optional[str] = None


class MyFinancesResponse(BaseModel, Generic[T]):
Expand Down
Binary file removed tests/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 4c6b80e

Please sign in to comment.