Changeset - 560889381651
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2020-05-04 18:25:52
brettcsmith@brettcsmith.org
beancount_types: Error.source is not Optional.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/beancount_types.py
Show inline comments
...
 
@@ -46,13 +46,13 @@ Posting = bc_data.Posting
 
class Directive(NamedTuple):
 
    meta: bc_data.Meta
 
    date: datetime.date
 

	
 

	
 
class Error(NamedTuple):
 
    source: Optional[Mapping[MetaKey, MetaValue]]
 
    source: Mapping[MetaKey, MetaValue]
 
    message: str
 
    entry: Optional[Directive]
 

	
 

	
 
class Transaction(Directive):
 
    flag: bc_data.Flag
0 comments (0 inline, 0 general)