From a0e723a22d6acc052483a7fa9d34da0e540a7684 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Wed, 25 Sep 2019 12:02:01 -0400 Subject: [PATCH] Stub in an overall Python module. --- semantic-tags/semantic-tags.cabal | 1 + semantic-tags/src/Language/Python.hs | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 semantic-tags/src/Language/Python.hs diff --git a/semantic-tags/semantic-tags.cabal b/semantic-tags/semantic-tags.cabal index cf8f8345c..17a225b2d 100644 --- a/semantic-tags/semantic-tags.cabal +++ b/semantic-tags/semantic-tags.cabal @@ -20,6 +20,7 @@ tested-with: GHC == 8.6.5 library exposed-modules: + Language.Python Language.Python.Tags Tags.Tag Tags.Tagging.Precise diff --git a/semantic-tags/src/Language/Python.hs b/semantic-tags/src/Language/Python.hs new file mode 100644 index 000000000..52a9f18cb --- /dev/null +++ b/semantic-tags/src/Language/Python.hs @@ -0,0 +1,2 @@ +module Language.Python +() where