Skip to content
Snippets Groups Projects
Commit 2fa0f66bb3b7 authored by Cédric Krier's avatar Cédric Krier :atom:
Browse files

Sort imports with isort

parent 2113c348f9a1
No related branches found
No related tags found
1 merge request!3Sort imports with isort
Pipeline #59996 passed
......@@ -2,4 +2,7 @@
# this repository contains the full copyright notices and license terms.
import datetime
from gi.repository import Gdk, Gtk
from goocalendar import Calendar, Event, EventStore
......@@ -5,5 +8,4 @@
from goocalendar import Calendar, Event, EventStore
from gi.repository import Gdk, Gtk
def on_event_pressed(calendar, event, event_store):
......
# This file is part of GooCalendar. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('Gdk', '3.0')
try:
......
# This file is part of GooCalendar. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import calendar
import datetime
......@@ -3,5 +4,4 @@
import datetime
import calendar
import math
from gi.repository import Gdk, GObject, GooCanvas, Gtk, Pango
......
# This file is part of GooCalendar. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import datetime
import sys
......@@ -3,5 +4,4 @@
import sys
import datetime
def my_weekdatescalendar(cal, date):
......
......@@ -6,7 +6,8 @@
import io
import os
import re
from setuptools import setup, find_packages
from setuptools import find_packages, setup
def read(fname):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment