- 重要な情報
- はじめに
- 用語集
- ガイド
- エージェント
- インテグレーション
- OpenTelemetry
- 開発者
- API
- CoScreen
- アプリ内
- Service Management
- インフラストラクチャー
- アプリケーションパフォーマンス
- 継続的インテグレーション
- ログ管理
- セキュリティ
- UX モニタリング
- 管理
ID: python-code-style/class-name
言語: Python
重大度: Notice
カテゴリー: Code Style
クラス名は CamelCase
であるべきで、camelCase
や snake_case
ではありません。
class _runtimeMetricsStatus(type):
pass
class myClass(Parent):
def __init__(self):
pass
class REQUESTS_MODE(IntEnum):
AGENTLESS_EVENTS = 0
EVP_PROXY_EVENTS = 1
class _RuntimeMetricsStatus(type):
pass
class Migration(migrations.Migration):
dependencies = [
('tweets', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='tweet',
name='parent',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='replies', to='tweets.tweet'),
),
migrations.DeleteModel(
name='Reply',
),
]
class MyClass(Parent):
def __init__(self):
pass
class TestRestapiV4Lock(FunctionalTestController):
pass
class TestS3Storage(TestCase):
pass
class TestS35Storage(TestCase):
pass
class TestS35Storage(TestCase):
pass