We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0faf13 commit ad45658Copy full SHA for ad45658
ansys/mapdl/core/convert.py
@@ -163,18 +163,10 @@ def translate_line(self, line):
163
if not line:
164
return
165
166
- if line[:4].upper() == "/COM":
167
- self.comment = "".join(line.split(",")[1:]).strip()[1:]
168
- return self.store_comment()
169
-
170
if line[:4].upper() == "/TIT": # /TITLE
171
parameters = line.split(",")[1:]
172
return self.store_command("title", ["".join(parameters).strip()])
173
174
- if line[:4].upper() == "C***": # C***
175
- self.comment = line.split("C***")[1].strip()[1:]
176
177
178
if line[:4].upper() == "*GET":
179
180
return self.store_command("get", parameters)
0 commit comments