Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit f022aae

Browse files
author
Samuel Hassine
committed
[client] Prepare the next version
1 parent 32010d6 commit f022aae

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pycti/entities/opencti_kill_chain_phase.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,10 @@ def create(self, **kwargs):
187187
modified = kwargs.get("modified", None)
188188

189189
kill_chain_phase_result = self.read(
190-
filters=[{"key": "kill_chain_name", "values": [kill_chain_name]}, {"key": "phase_name", "values": [phase_name]}]
190+
filters=[
191+
{"key": "kill_chain_name", "values": [kill_chain_name]},
192+
{"key": "phase_name", "values": [phase_name]},
193+
]
191194
)
192195
if kill_chain_phase_result is not None:
193196
return kill_chain_phase_result

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66
from setuptools.command.install import install
77

8-
VERSION = "3.3.0"
8+
VERSION = "3.3.1"
99

1010
with open("README.md", "r") as fh:
1111
long_description = fh.read()

0 commit comments

Comments
 (0)