@@ -493,7 +493,7 @@ PYBINDINGS("core", scope) {
493493 register_class<G3FrameObject>(scope, " G3FrameObject" ,
494494 " Base class for objects that can be added to a frame. All such "
495495 " must inherit from G3FrameObject in C++. Pickle hooks are overridden "
496- " to use the fast internal serialization. " )
496+ " to use the fast internal serialization" )
497497 .def (" Description" , &G3FrameObject::Description,
498498 " Long-form human-readable description of the object" )
499499 .def (" Summary" , &G3FrameObject::Summary,
@@ -542,7 +542,7 @@ PYBINDINGS("core", scope) {
542542 " Use sparingly and with care." )
543543 .def_readwrite (" type" , &G3Frame::type,
544544 " Type code for frame. See general G3Frame docstring." )
545- .def_property_readonly (" _filename" , []( const G3Frame &f) { return f. _filename ; } ,
545+ .def_readonly (" _filename" , &G3Frame:: _filename,
546546 " Source filename for frame, if read in using G3Reader. This attribute is "
547547 " fragile, use at your own risk." )
548548 .def (" __setitem__" , &G3Frame::Put)
0 commit comments