Skip to content

Commit 5777942

Browse files
committed
Rename FileOutputBase -> GribOutputBase
1 parent fb1fd11 commit 5777942

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/ai_models/outputs/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def finalise(self, *args, **kwargs):
2525
pass
2626

2727

28-
class FileOutputBase(Output):
28+
class GribOutputBase(Output):
2929
def __init__(self, owner, path, metadata, **kwargs):
3030
self._first = True
3131
metadata.setdefault("stream", "oper")
@@ -93,7 +93,7 @@ def write(self, data, *args, check=False, **kwargs):
9393
return handle, path
9494

9595

96-
class FileOutput(FileOutputBase):
96+
class FileOutput(GribOutputBase):
9797
def __init__(self, *args, **kwargs):
9898
super().__init__(*args, **kwargs)
9999
LOG.info("Writing results to %s", self.path)

0 commit comments

Comments
 (0)