Skip to content

Commit

Permalink
rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Mar 25, 2024
1 parent 03d71cb commit f82d440
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions ReleaseNotes/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

## Bug fixes


# v1.10.1.0

## New features:
Expand Down
3 changes: 2 additions & 1 deletion ostap/utils/valerrors.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __str__ ( self ) :
return "( -/%.5g +/%.5g )" % ( self.__negative , self.__positive )
##def __repr__ ( self ) :
## return "AsymErrors( negative=%+.6g, positive=%+.6g )" % ( self.__negative , self.__positive )

def __repr__ ( self ) : return self.__str__ ()

# =============================================================================
## @class ValWithErrors
Expand Down Expand Up @@ -206,6 +206,7 @@ def __str__ ( self ) :
## def __repr__ ( self ) :
## return "ValWithErrors(%+.6g, ( %+.6g , %+.6g ))" % \
## ( self.__value , self.neg_error, self.pos_error )
def __repr__ ( self ) : return self.__str__ ()


# ===========================================================================
Expand Down

0 comments on commit f82d440

Please sign in to comment.