File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ We'd love anyone interested to contribute to the Logfire SDK and documentation.
55## How to contribute
66
771 . Fork and clone the repository
8- 2 . [ Install Rye] ( https://rye-up.com /guide/basics / )
8+ 2 . [ Install Rye] ( https://rye.astral.sh /guide/installation / )
993 . Run ` make install ` to install dependencies
10104 . Run ` make test ` to run unit tests
11115 . Run ` make format ` to format code
Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ logfire.configure() # (1)!
8080
8181logfire.info(' Hello, {name} !' , name = ' world' ) # (2)!
8282
83- with logfire.span(' Asking the user their {question} ' , question = ' age ' ): # (3)!
84- user_input = input (' How old are you [YYYY-mm-dd]? ' )
83+ with logfire.span(' Asking the user for their {question} ' , question = ' birthday ' ): # (3)!
84+ user_input = input (' When were you born [YYYY-mm-dd]? ' )
8585 dob = date.fromisoformat(user_input) # (4)!
8686 logfire.debug(' {dob=} {age=!r}' , dob = dob, age = date.today() - dob) # (5)!
8787```
You can’t perform that action at this time.
0 commit comments