kishvanchee commented on pull request #11277: URL: https://github.com/apache/airflow/pull/11277#issuecomment-704289191
@turbaszek Thanks I'll make the change. Maybe this isn't the right place to ask, if so please let me know. Currently my workflow is as follows: ``` $ find . \( -name '*.py' -or -name '*.rst' \) -type f -print0 | xargs -0 grep --color -n 'airflow.operators.<op>' # grep results which I view before making a change $ find . \( -name '*.py' -or -name '*.rst' \) -type f -print0 | xargs -0 sed -i 's/airflow.operators.<op>/airflow.operators.<OP>/g' ``` I started `find`ing `.rst` only recently now. Since you suggest an IDE, can you please recommend a better workflow maybe for working with airflow codebase? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
