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
··· 130 130 131 131 132 132 @register_all("ni-devices") 133 - def lists_created(data): 133 + def ni_devices(data): 134 134 devices = [] 135 135 for block in data: 136 136 block = block["niDeviceResponse"] ··· 138 138 details = list(block.values())[0] 139 139 details["category"] = category 140 140 devices.append(details) 141 - return {"ne-devices": devices} 141 + return {"ni-devices": devices} 142 142 143 143 144 144 # Skipped all the periscope- stuff for the moment