Option C Tools
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3# oct/migrate/__init__.py
4
5"""
6FS-539 — ``oct migrate`` subpackage.
7"""
8
9__all__ = ["migrate_group"]
10
11
12def __getattr__(name: str):
13 if name == "migrate_group":
14 from oct.migrate.oct_migrate import migrate as _migrate
15 return _migrate
16 raise AttributeError(f"module 'oct.migrate' has no attribute {name!r}")
__getattr__(str name)
Definition __init__.py:12