Error importing fastai.conv_learner - seems like typo in transforms.py indentation error

After a recent git pull of fastai, when I try to import fastai.conv_learner I get the following error

Traceback (most recent call last):

File “/home/paperspace/anaconda3/envs/fastai/lib/python3.6/site-packages/IPython/core/interactiveshell.py”, line 2961, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)

File “”, line 1, in
from fastai.conv_learner import *

File “/home/paperspace/fastai/courses/dl1/fastai/conv_learner.py”, line 3, in
from .learner import *

File “/home/paperspace/fastai/courses/dl1/fastai/learner.py”, line 4, in
from .transforms import *

File “/home/paperspace/fastai/courses/dl1/fastai/transforms.py”, line 338
def do_transform(self, x, is_y):
^
IndentationError: unindent does not match any outer indentation level

When I go to the transforms.py file and line 38 sure enough the def of do_transform seems
to be unaligned.

See the second def below:

class CropNoop(CoordTransform):
“”" Does not resize and does not scale “”"
def init(self, sz, tfm_y=TfmType.NO, sz_y=None):
super().init(tfm_y)
def do_transform(self, x, is_y):
return x

Is this something that needs to be updated in the library?
Can I just update my local copy and keep going and next sync will fix?

Advice/suggestions welcome.
Thanks

Should be line 338 not 38