Skip to content

Commit 297a1ad

Browse files
dbiebercopybara-github
authored andcommitted
Quote lint formatting and fix accidentally reverted docs change.
PiperOrigin-RevId: 297189113 Change-Id: I6db02e4be001d280b0d98afaeb9e201f837cbecb
1 parent 34a10f9 commit 297a1ad

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ $ python example.py [1,2]
595595
list
596596
$ python example.py True
597597
bool
598-
$ python example.py {name: David}
598+
$ python example.py {name:David}
599599
dict
600600
```
601601

fire/test_components.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,5 @@ def double(self, number):
507507

508508
def __getattr__(self, name):
509509
def _missing():
510-
return "Undefined Function"
510+
return 'Undefined function'
511511
return _missing
512-

0 commit comments

Comments
 (0)