Skip to content

Commit ff71111

Browse files
SDK regeneration
1 parent 409c348 commit ff71111

File tree

4 files changed

+53
-44
lines changed

4 files changed

+53
-44
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
![](https://www.anduril.com/lattice-sdk/)
44

5-
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.202132.xyz%2Fanduril%2Flattice-sdk-python)
65
[![pypi](https://img.shields.io/pypi/v/anduril-lattice-sdk)](https://pypi.python.org/pypi/anduril-lattice-sdk)
76

87
The Lattice SDK Python library provides convenient access to the Lattice SDK APIs from Python.

poetry.lock

Lines changed: 50 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "anduril-lattice-sdk"
33

44
[tool.poetry]
55
name = "anduril-lattice-sdk"
6-
version = "2.3.0"
6+
version = "2.4.0"
77
description = "HTTP clients for the Anduril Lattice SDK"
88
readme = "README.md"
99
authors = [

src/anduril/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def __init__(
2222

2323
def get_headers(self) -> typing.Dict[str, str]:
2424
headers: typing.Dict[str, str] = {
25-
"User-Agent": "anduril-lattice-sdk/2.3.0",
25+
"User-Agent": "anduril-lattice-sdk/2.4.0",
2626
"X-Fern-Language": "Python",
2727
"X-Fern-SDK-Name": "anduril-lattice-sdk",
28-
"X-Fern-SDK-Version": "2.3.0",
28+
"X-Fern-SDK-Version": "2.4.0",
2929
**(self.get_custom_headers() or {}),
3030
}
3131
token = self._get_token()

0 commit comments

Comments
 (0)