Skip to content

Commit

Permalink
Merge pull request #18910 from smitgajjar/issue_18906
Browse files Browse the repository at this point in the history
parsing(c_parser): redundant parameter "name" has been removed
  • Loading branch information
smichr committed Mar 19, 2020
2 parents 5b92c44 + 209dc40 commit c02515a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sympy/parsing/c/c_parser.py
Expand Up @@ -80,7 +80,7 @@ class CCodeConverter(BaseParser):
converts them to SymPy Expressions.
"""

def __init__(self, name):
def __init__(self):
"""Initializes the code converter"""
super(CCodeConverter, self).__init__()
self._py_nodes = []
Expand Down Expand Up @@ -650,7 +650,7 @@ def parse_c(source):
List of Python expression strings
"""
converter = CCodeConverter('output')
converter = CCodeConverter()
if os.path.exists(source):
src = converter.parse(source, flags = [])
else:
Expand Down

0 comments on commit c02515a

Please sign in to comment.