From d6b09eec6d014c899454fe3b5da28c478c026657 Mon Sep 17 00:00:00 2001
From: Vishesh Handa <me@vhanda.in>
Date: Thu, 25 Mar 2021 12:28:21 +0100
Subject: [PATCH] Auto format

I use - flutter pub run import_sorter:main to keep everything neat. I
wish this was part of flutter. Maybe I should stop caring about this.
---
 lib/editors/org_editor.dart  | 1 +
 lib/screens/note_editor.dart | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/editors/org_editor.dart b/lib/editors/org_editor.dart
index f4c3461a..579ad23b 100644
--- a/lib/editors/org_editor.dart
+++ b/lib/editors/org_editor.dart
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */
+
 import 'dart:io';
 
 import 'package:flutter/material.dart';
diff --git a/lib/screens/note_editor.dart b/lib/screens/note_editor.dart
index dec1dfe5..2e03aead 100644
--- a/lib/screens/note_editor.dart
+++ b/lib/screens/note_editor.dart
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */
+
 import 'dart:io';
 
 import 'package:flutter/material.dart';
@@ -20,7 +21,6 @@ import 'package:flutter/services.dart';
 
 import 'package:collection/collection.dart';
 import 'package:easy_localization/easy_localization.dart';
-import 'package:gitjournal/editors/org_editor.dart';
 import 'package:provider/provider.dart';
 
 import 'package:gitjournal/core/md_yaml_doc.dart';
@@ -30,6 +30,7 @@ import 'package:gitjournal/core/notes_folder_fs.dart';
 import 'package:gitjournal/editors/checklist_editor.dart';
 import 'package:gitjournal/editors/journal_editor.dart';
 import 'package:gitjournal/editors/markdown_editor.dart';
+import 'package:gitjournal/editors/org_editor.dart';
 import 'package:gitjournal/editors/raw_editor.dart';
 import 'package:gitjournal/error_reporting.dart';
 import 'package:gitjournal/repository.dart';