6a97476732c4029c701a3d0d448eb2ffe3ac706b,setup.py,,,#,46
Before Change
required = []
with open("requirements.txt") as fp:
for line in fp:
line = line.strip()
if line != "":
required.append(line)
import pwnagotchi
setup(name="pwnagotchi",
version=pwnagotchi.version,
After Change
installer()
with open("requirements.txt") as fp:
required = [line.strip() for line in fp if line.strip() != ""]
import pwnagotchi
setup(name="pwnagotchi",
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances
Project Name: evilsocket/pwnagotchi
Commit Name: 6a97476732c4029c701a3d0d448eb2ffe3ac706b
Time: 2019-12-02
Author: alanyee@users.noreply.github.com
File Name: setup.py
Class Name:
Method Name:
Project Name: Hironsan/anago
Commit Name: c12740b64e69e8383144d0f36a138bf033a9b074
Time: 2017-08-01
Author: light.tree.1.13@gmail.com
File Name: anago/data_utils.py
Class Name:
Method Name: load_vocab
Project Name: AKSHAYUBHAT/DeepVideoAnalytics
Commit Name: bd4146b3f0281bbcd45bfefac7c666168e29ed73
Time: 2018-05-31
Author: akshayubhat@gmail.com
File Name: server/dvaapp/operations/dataset.py
Class Name: DatasetCreator
Method Name: extract_zip_dataset