Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nkakouros authored and andrewbwm committed Mar 21, 2024
1 parent 75aeb20 commit be42b6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions malpzsim/sims/mal_petting_zoo_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,9 +586,9 @@ def render(self):
logger.debug("Ingest attack graph into Neo4J database.")
neo4j.ingest_attack_graph(
self.attack_graph,
maltoolbox.neo4j_configs["uri"],
maltoolbox.neo4j_configs["username"],
maltoolbox.neo4j_configs["password"],
maltoolbox.neo4j_configs["dbname"],
neo4j_configs["uri"],
neo4j_configs["username"],
neo4j_configs["password"],
neo4j_configs["dbname"],
delete=True,
)
2 changes: 1 addition & 1 deletion tests/run_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def default(self, o):
lang_classes_factory = LanguageClassesFactory(lang_spec)
lang_classes_factory.create_classes()

lang_graph = mallanguagegraph.LanguageGraph(lang_spec)
lang_graph = LanguageGraph(lang_spec)

model = Model("Test Model", lang_spec, lang_classes_factory)
model.load_from_file("tests/example_model.json")
Expand Down

0 comments on commit be42b6f

Please sign in to comment.