Skip to content

Commit

Permalink
Renamed GeomBasic to GeomLineBasic
Browse files Browse the repository at this point in the history
  • Loading branch information
johnc1231 committed Jan 3, 2022
1 parent 9931e3c commit 5fe6b45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hail/python/hail/plot2/geoms.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_stat(self):
return ...


class GeomBasic(Geom):
class GeomLineBasic(Geom):
def __init__(self, aes, color):
super().__init__(aes)
self.color = color
Expand Down Expand Up @@ -208,7 +208,7 @@ def geom_point(mapping=aes(), *, color=None):
return GeomPoint(mapping, color=color)


class GeomLine(GeomBasic):
class GeomLine(GeomLineBasic):

def __init__(self, aes, color=None):
super().__init__(aes, color)
Expand Down Expand Up @@ -468,7 +468,7 @@ def geom_tile(mapping=aes()):
return GeomTile(mapping)


class GeomFunction(GeomBasic):
class GeomFunction(GeomLineBasic):
def __init__(self, aes, fun, color):
super().__init__(aes, color)
self.fun = fun
Expand Down

0 comments on commit 5fe6b45

Please sign in to comment.