Skip to content

Commit

Permalink
flaky 2
Browse files Browse the repository at this point in the history
  • Loading branch information
rpiazza committed Apr 16, 2024
1 parent 2955024 commit 3c92d7c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ def get_long_description():
extras_require={
'taxii': ['taxii2-client>=2.3.0'],
'semantic': ['haversine', 'rapidfuzz'],
'relationaldb': [ 'sqlalchemy',
'sqlalchemy_utils',
'psycopg2',
'relationaldb': [
'sqlalchemy',
'sqlalchemy_utils',
'psycopg2',
],
},
)
4 changes: 2 additions & 2 deletions stix2/datastore/relational_db/input_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ def generate_insert_information(self, name, stix_object, **kwargs): # noqa: F81


@add_method(ListProperty)
def generate_insert_information(
def generate_insert_information( # noqa: F811
self, name, stix_object, level=0, is_extension=False,
foreign_key_value=None, schema_name=None, **kwargs,
): # noqa: F811
):
data_sink = kwargs.get("data_sink")
table_name = kwargs.get("table_name")
if isinstance(self.contained, ReferenceProperty):
Expand Down

0 comments on commit 3c92d7c

Please sign in to comment.