494699639d00a64ed40f417ca3dc2fda722ea3fc,ggplotx/labels.py,ylab,__init__,#ylab#Any#,65
Before Change
def __init__(self, ylab):
if ylab is None:
raise GgplotError("Arguments to",
self.__class__.__name__,
"cannot be None")
self.labels = {"y": ylab}
class ggtitle(labs):
After Change
def __init__(self, ylab):
if ylab is None:
raise GgplotError(
"Arguments to ylab cannot be None")
self.labels = {"y": ylab}
class ggtitle(labs):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances
Project Name: has2k1/plotnine
Commit Name: 494699639d00a64ed40f417ca3dc2fda722ea3fc
Time: 2016-07-19
Author: has2k1@gmail.com
File Name: ggplotx/labels.py
Class Name: ylab
Method Name: __init__
Project Name: has2k1/plotnine
Commit Name: 494699639d00a64ed40f417ca3dc2fda722ea3fc
Time: 2016-07-19
Author: has2k1@gmail.com
File Name: ggplotx/labels.py
Class Name: xlab
Method Name: __init__
Project Name: has2k1/plotnine
Commit Name: 494699639d00a64ed40f417ca3dc2fda722ea3fc
Time: 2016-07-19
Author: has2k1@gmail.com
File Name: ggplotx/labels.py
Class Name: ggtitle
Method Name: __init__