Skip to content

Commit 22cb8b4

Browse files
committed
no more cfg, it aint toml
1 parent cf82ce7 commit 22cb8b4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/snippet/config.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@ class Config:
3434

3535

3636
def find_config(root):
37-
return (
38-
glob.glob(os.path.join(root, '**', '*.toml'), recursive=True) +
39-
glob.glob(os.path.join(root, '**', '*.cfg'), recursive=True)
40-
)
37+
return glob.glob(os.path.join(root, '**', '*.toml'), recursive=True)
4138

4239

4340
def get_config(config_path=None, **options):

0 commit comments

Comments
 (0)