From 5a9ff5cec6f4a609420b2c613691c43e02890106 Mon Sep 17 00:00:00 2001
From: Nico Alt <nicoalt@posteo.org>
Date: Thu, 17 Dec 2020 12:36:54 +0100
Subject: [PATCH] Add __init__ files for modules

Although it isn't necessary for Python 3, some tools analyzing code
(e.g. pyreverse from pylint) need those files.
---
 briar-gtk/briar_gtk/__init__.py            | 6 ++++++
 briar-gtk/briar_gtk/actions/__init__.py    | 6 ++++++
 briar-gtk/briar_gtk/containers/__init__.py | 6 ++++++
 briar-gtk/briar_gtk/widgets/__init__.py    | 6 ++++++
 4 files changed, 24 insertions(+)
 create mode 100644 briar-gtk/briar_gtk/__init__.py
 create mode 100644 briar-gtk/briar_gtk/actions/__init__.py
 create mode 100644 briar-gtk/briar_gtk/containers/__init__.py
 create mode 100644 briar-gtk/briar_gtk/widgets/__init__.py

diff --git a/briar-gtk/briar_gtk/__init__.py b/briar-gtk/briar_gtk/__init__.py
new file mode 100644
index 0000000..c5017c0
--- /dev/null
+++ b/briar-gtk/briar_gtk/__init__.py
@@ -0,0 +1,6 @@
+# Copyright (c) 2020 Nico Alt
+# SPDX-License-Identifier: AGPL-3.0-only
+# License-Filename: LICENSE.md
+"""
+A GTK application for Briar
+"""
diff --git a/briar-gtk/briar_gtk/actions/__init__.py b/briar-gtk/briar_gtk/actions/__init__.py
new file mode 100644
index 0000000..8519cf1
--- /dev/null
+++ b/briar-gtk/briar_gtk/actions/__init__.py
@@ -0,0 +1,6 @@
+# Copyright (c) 2020 Nico Alt
+# SPDX-License-Identifier: AGPL-3.0-only
+# License-Filename: LICENSE.md
+"""
+GTK Actions of Briar GTK
+"""
diff --git a/briar-gtk/briar_gtk/containers/__init__.py b/briar-gtk/briar_gtk/containers/__init__.py
new file mode 100644
index 0000000..8d68ea3
--- /dev/null
+++ b/briar-gtk/briar_gtk/containers/__init__.py
@@ -0,0 +1,6 @@
+# Copyright (c) 2020 Nico Alt
+# SPDX-License-Identifier: AGPL-3.0-only
+# License-Filename: LICENSE.md
+"""
+Containers in Briar GTK
+"""
diff --git a/briar-gtk/briar_gtk/widgets/__init__.py b/briar-gtk/briar_gtk/widgets/__init__.py
new file mode 100644
index 0000000..a328738
--- /dev/null
+++ b/briar-gtk/briar_gtk/widgets/__init__.py
@@ -0,0 +1,6 @@
+# Copyright (c) 2020 Nico Alt
+# SPDX-License-Identifier: AGPL-3.0-only
+# License-Filename: LICENSE.md
+"""
+Widgets (small UI chunks) in Briar GTK
+"""
-- 
GitLab