I'm encountering an error when using `meltano add ...
# troubleshooting
a
I'm encountering an error when using `meltano add extractor tap-mssql`:
Copy code
❯ meltano add extractor tap-mssql
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.

'NoneType' object has no attribute 'get'
What could be the problem here? My meltano version is 3.7.8 Thanks in advance!
r
Do you have an empty mapping in your
meltano.yml
somewhere? I'm able to reproduce the same error by removing all plugins, but leaving the
plugins
key:
Copy code
reuben@reuben-Inspiron-14-5425:/tmp/p$ cat meltano.yml 
version: 1
default_environment: dev
project_id: b4cc1508-61b8-4b25-8242-048896353f76
environments:
- name: dev
- name: staging
- name: prod
plugins:
reuben@reuben-Inspiron-14-5425:/tmp/p$ meltano378 add extractor tap-mssql
2025-09-08T14:49:41.421383Z [critical ] Could not update meltano.yml: 'NoneType' object has no attribute 'get'
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.

'NoneType' object has no attribute 'get'
reuben@reuben-Inspiron-14-5425:/tmp/p$
a
Thanks, I found an empty file that was causing the issue.
👍 1
e
Hey @Alex You, do you mean an empty file you included in
include_paths
?
a
Yes, I had an empty
.yml
file in the directory I had set in
include_paths
that I removed and fixed this issue
ty 1