Skip to content

Commit

Permalink
temporal: Remove write_tables keyword sent to ply.yacc as removed in …
Browse files Browse the repository at this point in the history
…newer version
  • Loading branch information
echoix committed Oct 6, 2024
1 parent 4a82d21 commit 9e745d0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/grass/temporal/temporal_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ def parse(
"""
self.lexer = TemporalAlgebraLexer()
self.lexer.build()
self.parser = yacc.yacc(module=self, debug=self.debug, write_tables=False)
self.parser = yacc.yacc(module=self, debug=self.debug)

self.overwrite = overwrite
self.count = 0
Expand Down
2 changes: 1 addition & 1 deletion python/grass/temporal/temporal_raster3d_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def parse(self, expression, basename=None, overwrite=False):

self.lexer = TemporalRasterAlgebraLexer()
self.lexer.build()
self.parser = yacc.yacc(module=self, debug=self.debug, write_tables=False)
self.parser = yacc.yacc(module=self, debug=self.debug)

self.overwrite = overwrite
self.count = 0
Expand Down
2 changes: 1 addition & 1 deletion python/grass/temporal/temporal_raster_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def parse(self, expression, basename=None, overwrite=False):

self.lexer = TemporalRasterAlgebraLexer()
self.lexer.build()
self.parser = yacc.yacc(module=self, debug=self.debug, write_tables=False)
self.parser = yacc.yacc(module=self, debug=self.debug)

self.overwrite = overwrite
self.count = 0
Expand Down
2 changes: 1 addition & 1 deletion python/grass/temporal/temporal_vector_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def parse(self, expression, basename=None, overwrite=False):

self.lexer = TemporalVectorAlgebraLexer()
self.lexer.build()
self.parser = yacc.yacc(module=self, debug=self.debug, write_tables=False)
self.parser = yacc.yacc(module=self, debug=self.debug)

self.overwrite = overwrite
self.count = 0
Expand Down

0 comments on commit 9e745d0

Please sign in to comment.