Skip to content

Commit

Permalink
Remove unnecessary keyword args.
Browse files Browse the repository at this point in the history
  • Loading branch information
ktlim committed Jul 6, 2018
1 parent d78b28b commit 6ea281e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/daf/persistence/posixStorage.py
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ def writeBoostStorage(butlerLocation, obj):
PosixStorage.registerFormatters("FitsCatalogStorage", readFitsCatalogStorage, writeFitsCatalogStorage)
PosixStorage.registerFormatters("MatplotlibStorage", readMatplotlibStorage, writeMatplotlibStorage)
PosixStorage.registerFormatters("PafStorage", readFormatter=readPafStorage)
PosixStorage.registerFormatters("YamlStorage", readFormatter=readYamlStorage, writeFormatter=writeYamlStorage)
PosixStorage.registerFormatters("YamlStorage", readYamlStorage, writeYamlStorage)
PosixStorage.registerFormatters("BoostStorage", readFitsStorage, writeFitsStorage)

Storage.registerStorageClass(scheme='', cls=PosixStorage)
Expand Down

0 comments on commit 6ea281e

Please sign in to comment.