satisfactory: annotate local variables for Cookbook

This commit is contained in:
Danny Robson 2019-07-14 11:13:13 +10:00
parent 9e2d8dba8a
commit 9f4858c885

View File

@ -1,8 +1,10 @@
import os
import json
from typing import Dict
class Cookbook(object):
__recipes: dict
__recipes: Dict[str, Dict]
def __init__(self, root: str):
self.__recipes = dict()