Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
aspicer committed Jun 12, 2024
1 parent 2def5e3 commit b09471c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion posthog/hogql/ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def print_type(self) -> str:
@dataclass(kw_only=True)
class ArrayType(ConstantType):
data_type: ConstantDataType = field(default="array", init=False)
item_type: ConstantType = UnknownType()
item_type: ConstantType = field(default_factory=UnknownType)

def print_type(self) -> str:
return "Array"
Expand Down
7 changes: 3 additions & 4 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# - `uv pip compile requirements.in -o requirements.txt`
# - `uv pip compile requirements-dev.in -o requirements-dev.txt`
#
aiohttp>=3.9.5
aiohttp>=3.9.0
aioboto3==12.0.0
aiokafka>=0.8
antlr4-python3-runtime==4.13.1
Expand Down Expand Up @@ -60,7 +60,7 @@ pyarrow==15.0.0
pydantic==2.5.3
pyjwt==2.4.0
python-dateutil>=2.8.2
python3-saml==1.16.0
python3-saml==1.12.0
pytz==2023.3
redis==4.5.4
retry==0.9.2
Expand Down Expand Up @@ -95,6 +95,5 @@ tiktoken==0.6.0
nh3==0.2.14
hogql-parser==1.0.14
zxcvbn==4.4.28
yarl==1.9.4
frozenlist==1.4.1
xmlsec==1.3.14
lxml==5.2.2
11 changes: 3 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ filelock==3.12.0
# via snowflake-connector-python
frozenlist==1.4.1
# via
# -r requirements.in
# aiohttp
# aiosignal
fsspec==2023.10.0
Expand Down Expand Up @@ -467,7 +466,7 @@ python-statsd==2.1.0
# via django-statsd
python3-openid==3.1.0
# via social-auth-core
python3-saml==1.16.0
python3-saml==1.12.0
# via -r requirements.in
pytz==2023.3
# via
Expand Down Expand Up @@ -683,12 +682,8 @@ wrapt==1.15.0
wsproto==1.1.0
# via trio-websocket
xmlsec==1.3.14
# via
# -r requirements.in
# python3-saml
# via python3-saml
yarl==1.9.4
# via
# -r requirements.in
# aiohttp
# via aiohttp
zxcvbn==4.4.28
# via -r requirements.in

0 comments on commit b09471c

Please sign in to comment.