Skip to content

Commit

Permalink
add include statement
Browse files Browse the repository at this point in the history
  • Loading branch information
C.A.P. Linssen committed Nov 22, 2024
1 parent 961953d commit 20255b3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 337 deletions.

This file was deleted.

3 changes: 1 addition & 2 deletions pynestml/utils/model_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
from pynestml.meta_model.ast_variable import ASTVariable
from pynestml.meta_model.ast_while_stmt import ASTWhileStmt
from pynestml.symbol_table.symbol_table import SymbolTable
from pynestml.transformers.assign_implicit_conversion_factors_transformer import AssignImplicitConversionFactorsTransformer
from pynestml.utils.ast_source_location import ASTSourceLocation
from pynestml.utils.error_listener import NestMLErrorListener
from pynestml.utils.logger import Logger, LoggingLevel
Expand Down Expand Up @@ -457,7 +456,7 @@ def parse_update_block(cls, string):
# type: (str) -> ASTUpdateBlock
(builder, parser) = tokenize(string)
ret = builder.visit(parser.updateBlock())
ret.accept(ASTHigherOrderVisitor(log_sparse_included_fileet_added_source_position))
ret.accept(ASTHigherOrderVisitor(log_set_added_source_position))
return ret

@classmethod
Expand Down

0 comments on commit 20255b3

Please sign in to comment.