Skip to content

Commit

Permalink
Merge pull request #2 from Fogapod/master
Browse files Browse the repository at this point in the history
Fixed double import of `App`
  • Loading branch information
inclement authored Aug 29, 2017
2 parents 29d6a8a + 4cc3ad5 commit 318be1e
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions pyonic/interpreter.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.behaviors import ButtonBehavior
from kivy.uix.label import Label
from kivy.uix.screenmanager import Screen
from kivy.uix.widget import Widget
from kivy.uix.button import Button
from kivy.uix.carousel import Carousel
from kivy.uix.scrollview import ScrollView
from kivy.uix.gridlayout import GridLayout
from kivy.uix.stacklayout import StackLayout
from kivy.uix.behaviors import FocusBehavior
from kivy.uix.modalview import ModalView
from kivy.uix.popup import Popup
from kivy.event import EventDispatcher
from kivy.core.window import Window
from kivy.properties import (ObjectProperty, NumericProperty,
OptionProperty, BooleanProperty,
Expand All @@ -26,8 +22,6 @@


from time import time
import os
from functools import partial
import traceback

if platform == 'android':
Expand All @@ -45,9 +39,6 @@
from widgets import ColouredButton

import sys

import signal

from os.path import realpath, join, dirname


Expand Down

0 comments on commit 318be1e

Please sign in to comment.