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 f90a2b0 commit 3c0fe47Copy full SHA for 3c0fe47
sqlalchemy_seed/__init__.py
@@ -63,7 +63,7 @@ def load_fixture_files(paths, files):
63
64
with open(fixture_path, 'r') as f:
65
if file.endswith('.yaml') or file.endswith('.yml'):
66
- data = yaml.load(f, loader=Loader)
+ data = yaml.load(f, Loader=Loader)
67
elif file.endswith('.json'):
68
data = json.loads(f)
69
else:
0 commit comments