this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Archive: Fix "ni devices" typo in importer

+2 -2
+2 -2
twitter_to_sqlite/archive.py
··· 137 137 138 138 139 139 @register_all("ni-devices") 140 - def lists_created(data): 140 + def ni_devices(data): 141 141 devices = [] 142 142 for block in data: 143 143 block = block["niDeviceResponse"] ··· 145 145 details = list(block.values())[0] 146 146 details["category"] = category 147 147 devices.append(details) 148 - return {"ne-devices": devices} 148 + return {"ni-devices": devices} 149 149 150 150 151 151 # Skipped all the periscope- stuff for the moment