Source code for exatomic.adf.editor

# -*- coding: utf-8 -*-
# Copyright (c) 2015-2022, Exa Analytics Development Team
# Distributed under the terms of the Apache License 2.0
"""
Base ADF editor
##################
"""
from exatomic import Editor as AtomicEditor


[docs]class Editor(AtomicEditor): def __init__(self, *args, **kwargs): super(Editor, self).__init__(*args, **kwargs) if hasattr(self, "meta") and self.meta is None: self.meta = {'program': 'adf', 'gaussian': False} else: self.meta.update({'program': 'adf', 'gaussian': False})