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 e95ee16 commit f591d7cCopy full SHA for f591d7c
src/ansys/dpf/core/data_sources.py
@@ -292,7 +292,7 @@ def set_domain_result_file_path(
292
>>> my_data_sources.set_domain_result_file_path(path='/tmp/file1.rst', key='rst', domain_id=1)
293
294
"""
295
- path = PurePosixPath(path) if self._server.os == 'posix' else PureWindowsPath(path)
+ path = PurePosixPath(path) if self._server.os == "posix" else PureWindowsPath(path)
296
if key:
297
self._api.data_sources_set_domain_result_file_path_with_key_utf8(
298
self, str(path), key, domain_id
0 commit comments